mirror of
https://sourceware.org/git/glibc.git
synced 2026-01-06 11:51:29 +03:00
* sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): If CNT == 1,
allocate space even for the trailing '/'. Reported by John Reiser <jreiser@BitWagon.com>. * sysdeps/unix/sysv/linux/ia64/sysdep.h (LOAD_ARGS_6, ASM_ARGS_6, ASM_CLOBBERS_6): Define. (ASM_CLOBBERS_5): Use ASM_CLOBBERS_6. * sysdeps/unix/sysv/linux/ia64/clone2.S (__clone2): Reorder arguments to match IA-32 order. * sysdeps/unix/sysv/linux/i386/clone.S: Fix comment.
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
|
||||
/* int __clone2(int (*fn) (void *arg), void *child_stack_base, */
|
||||
/* size_t child_stack_size, int flags, void *arg, */
|
||||
/* pid_t *child_tid, pid_t *parent_tid, void *tls) */
|
||||
/* pid_t *parent_tid, void *tls, pid_t *child_tid) */
|
||||
|
||||
ENTRY(__clone2)
|
||||
alloc r2=ar.pfs,8,2,6,0
|
||||
@@ -42,9 +42,9 @@ ENTRY(__clone2)
|
||||
mov out0=in3 /* Flags are first syscall argument. */
|
||||
mov out1=in1 /* Stack address. */
|
||||
mov out2=in2 /* Stack size. */
|
||||
mov out3=in5 /* Child TID Pointer */
|
||||
mov out4=in6 /* Parent TID Pointer */
|
||||
mov out5=in7 /* TLS pointer */
|
||||
mov out3=in7 /* Child TID Pointer */
|
||||
mov out4=in5 /* Parent TID Pointer */
|
||||
mov out5=in6 /* TLS pointer */
|
||||
DO_CALL (SYS_ify (clone2))
|
||||
cmp.eq p6,p0=-1,r10
|
||||
;;
|
||||
|
||||
Reference in New Issue
Block a user