diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-03-13 04:41:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-03-13 04:41:39 +0000 |
commit | b5ec56172d65dd37437846363e742249126d5975 (patch) | |
tree | 45d7214a626a6e4a68b4ea838212391ac45478e5 /nptl | |
parent | 7588880f50f551cb60a99e2dd2068fdc170e5435 (diff) | |
download | glibc-b5ec56172d65dd37437846363e742249126d5975.tar.gz glibc-b5ec56172d65dd37437846363e742249126d5975.tar.xz glibc-b5ec56172d65dd37437846363e742249126d5975.zip |
Update.
2003-03-13 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/ia64/sysdep.h (BREAK_INSN_1, BREAK_INSN, ASM_OUTARGS_0, ASM_OUTARGS_1, ASM_OUTARGS_2, ASM_OUTARGS_3, ASM_OUTARGS_4, ASM_OUTARGS_5, ASM_OUTARGS_6): Define. (INTERNAL_SYSCALL, INLINE_SYSCALL): Use it. Make syscall arguments clobbered by the syscall. (ASM_ARGS_1, ASM_ARGS_2, ASM_ARGS_3, ASM_ARGS_4, ASM_ARGS_5, ASM_ARGS_6): Change constraints from r to index of corresponding output register. * sysdeps/unix/sysv/linux/ia64/clone2.S (__clone2): Swap ptid and ctid to match kernel. * sysdeps/unix/sysv/linux/ia64/system.c (FORK): Likewise. * sysdeps/powerpc/powerpc64/elf/configure.in: Remove * sysdeps/powerpc/powerpc64/elf/configure: Regenerated.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 5 | ||||
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/ia64/fork.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 5031d3a8ee..f3bc8e914b 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2003-03-13 Jakub Jelinek <jakub@redhat.com> + + * sysdeps/unix/sysv/linux/ia64/fork.c (ARCH_FORK): Swap ptid and + ctid to match kernel. + 2003-03-12 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add diff --git a/nptl/sysdeps/unix/sysv/linux/ia64/fork.c b/nptl/sysdeps/unix/sysv/linux/ia64/fork.c index b8d00bd98a..1502310f1d 100644 --- a/nptl/sysdeps/unix/sysv/linux/ia64/fork.c +++ b/nptl/sysdeps/unix/sysv/linux/ia64/fork.c @@ -26,6 +26,6 @@ #define ARCH_FORK() \ INLINE_SYSCALL (clone2, 6, \ CLONE_CHILD_SETTID | CLONE_CHILD_CLEARTID | SIGCHLD, \ - NULL, 0, &THREAD_SELF->tid, NULL, NULL) + NULL, 0, NULL, &THREAD_SELF->tid, NULL) #include "../fork.c" |