diff options
author | Jakub Jelinek <jakub@redhat.com> | 2004-12-15 09:53:46 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2004-12-15 09:53:46 +0000 |
commit | 14cbd70aa6ab1b1fcb77b4f2ab53e2954ea081e9 (patch) | |
tree | debbaa8f74dc640a05ea11e96091d31bfbfe28ea /nptl/sysdeps/unix | |
parent | befe97e0d0e019ed913a2dddee77c62662349aec (diff) | |
download | glibc-14cbd70aa6ab1b1fcb77b4f2ab53e2954ea081e9.tar glibc-14cbd70aa6ab1b1fcb77b4f2ab53e2954ea081e9.tar.gz glibc-14cbd70aa6ab1b1fcb77b4f2ab53e2954ea081e9.tar.bz2 glibc-14cbd70aa6ab1b1fcb77b4f2ab53e2954ea081e9.zip |
* sysdeps/unix/sysv/linux/s390/s390-32/clone.S (__clone): Add support for
NPTL where the PID is stored at userlevel and needs to be reset when
CLONE_THREAD is not used.
* sysdeps/unix/sysv/linux/s390/s390-64/clone.S (__clone): Likewise.
nptl/
* sysdeps/unix/sysv/linux/s390/s390-32/clone.S: New file.
* sysdeps/unix/sysv/linux/s390/s390-64/clone.S: New file.
* sysdeps/s390/tcb-offsets.sym (TID): Add.
Diffstat (limited to 'nptl/sysdeps/unix')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/s390/s390-32/clone.S | 2 | ||||
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/s390/s390-64/clone.S | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/s390/s390-32/clone.S b/nptl/sysdeps/unix/sysv/linux/s390/s390-32/clone.S new file mode 100644 index 0000000000..682f94dae8 --- /dev/null +++ b/nptl/sysdeps/unix/sysv/linux/s390/s390-32/clone.S @@ -0,0 +1,2 @@ +#define RESET_PID +#include <sysdeps/unix/sysv/linux/s390/s390-32/clone.S> diff --git a/nptl/sysdeps/unix/sysv/linux/s390/s390-64/clone.S b/nptl/sysdeps/unix/sysv/linux/s390/s390-64/clone.S new file mode 100644 index 0000000000..87ee2e1846 --- /dev/null +++ b/nptl/sysdeps/unix/sysv/linux/s390/s390-64/clone.S @@ -0,0 +1,2 @@ +#define RESET_PID +#include <sysdeps/unix/sysv/linux/s390/s390-64/clone.S> |