This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[PATCH 17/26] Linux: exit_group syscall number is always available
- From: Florian Weimer <fweimer at redhat dot com>
- To: libc-alpha at sourceware dot org
- Date: Sun, 09 Feb 2020 21:20:50 +0100
- Subject: [PATCH 17/26] Linux: exit_group syscall number is always available
- References: <cover.1581279333.git.fweimer@redhat.com>
Due to the built-in tables, __NR_exit_group is always defined.
---
sysdeps/unix/sysv/linux/_exit.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/sysdeps/unix/sysv/linux/_exit.c b/sysdeps/unix/sysv/linux/_exit.c
index 5896c15da6..a8521101b3 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
--
2.24.1