]> granicus.if.org Git - strace/commitdiff
* process.c (internal_exit) [IA64]: Remove redundant check.
authorDmitry V. Levin <ldv@altlinux.org>
Fri, 18 Feb 2011 23:16:20 +0000 (23:16 +0000)
committerDmitry V. Levin <ldv@altlinux.org>
Fri, 18 Feb 2011 23:16:20 +0000 (23:16 +0000)
process.c

index 764abaf6f1bb88b6b84fd50821e783f54c6c3fca..b32c3b1f0baeef8e06b0c6a62541d9a970914f16 100644 (file)
--- a/process.c
+++ b/process.c
@@ -443,18 +443,11 @@ struct tcb *tcp;
 }
 
 int
-internal_exit(tcp)
-struct tcb *tcp;
+internal_exit(struct tcb *tcp)
 {
        if (entering(tcp)) {
                tcp->flags |= TCB_EXITING;
 #ifdef __NR_exit_group
-# ifdef IA64
-               if (ia32) {
-                       if (tcp->scno == 252)
-                               tcp->flags |= TCB_GROUP_EXITING;
-               } else
-# endif
                if (known_scno(tcp) == __NR_exit_group)
                        tcp->flags |= TCB_GROUP_EXITING;
 #endif