From f05a41ebd3865694bfec31b385f661d23272296f Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 15 Dec 2004 09:14:28 +0000 Subject: .I think this code is more correct. --- sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdeps') diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S b/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S index be069c90c8..61a35a2f79 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S @@ -92,9 +92,9 @@ ENTRY (BP_SYM (__clone)) mr r1,r30 #ifdef RESET_PID - andis. r0,r28,1 /* This is & CLONE_THREAD */ + rldicl. r0,r28,48,63 /* This is & CLONE_THREAD */ bne+ r0,L(oldpid) - andi. r0,r28,CLONE_VM + rldicl. r0,r28,56,63 /* This is & CLONE_VM */ li r3,-1 bne- r0,L(nomoregetpid) DO_CALL(SYS_ify(getpid)) -- cgit v1.2.3