projects
/
platform
/
upstream
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aa35044
)
Linux: exit_group syscall number is always available
author
Florian Weimer
<fweimer@redhat.com>
Tue, 3 Mar 2020 11:17:24 +0000
(12:17 +0100)
committer
Florian Weimer
<fweimer@redhat.com>
Tue, 3 Mar 2020 11:17:24 +0000
(12:17 +0100)
Due to the built-in tables, __NR_exit_group is always defined.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
sysdeps/unix/sysv/linux/_exit.c
patch
|
blob
|
history
diff --git
a/sysdeps/unix/sysv/linux/_exit.c
b/sysdeps/unix/sysv/linux/_exit.c
index 5896c15da61ffb4bb8c2b7f3b48facce9fb65ef6..a8521101b3b61db79a30e485876dd0be32588220 100644
(file)
--- 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