From: Florian Weimer Date: Tue, 3 Mar 2020 11:17:24 +0000 (+0100) Subject: Linux: exit_group syscall number is always available X-Git-Tag: glibc-2.32~550 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11ae9a185baa1dbe2b200659d043761206fe70e3;p=thirdparty%2Fglibc.git Linux: exit_group syscall number is always available Due to the built-in tables, __NR_exit_group is always defined. Reviewed-by: Adhemerval Zanella --- diff --git a/sysdeps/unix/sysv/linux/_exit.c b/sysdeps/unix/sysv/linux/_exit.c index 5896c15da61..a8521101b3b 100644 --- a/sysdeps/unix/sysv/linux/_exit.c +++ b/sysdeps/unix/sysv/linux/_exit.c @@ -27,9 +27,7 @@ _exit (int status) { while (1) { -#ifdef __NR_exit_group INLINE_SYSCALL (exit_group, 1, status); -#endif INLINE_SYSCALL (exit, 1, status); #ifdef ABORT_INSTRUCTION