diff options
author | Eugene Syromyatnikov <evgsyr@gmail.com> | 2018-02-07 01:58:51 +0100 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2018-02-09 04:41:55 +0000 |
commit | 8048b4888149cea6d25bd93dc0e6ba5f84dd84f4 (patch) | |
tree | 2179c1525fba4d6c8620c6ea73b102104c3eb3be /linux/avr32/syscallent.h | |
parent | 8e4b24701a944570e2af6dfc247a060be1da1b11 (diff) | |
download | strace-8048b4888149cea6d25bd93dc0e6ba5f84dd84f4.tar.gz |
Add SYSCALL_NEVER_FAILS flag to getpgrp
As glibc, at least, treats it this way.
* linux/aarch64/syscallent.h (getpgrp): Add NF flag.
* linux/alpha/syscallent.h: Likewise.
* linux/arm/syscallent.h: Likewise.
* linux/avr32/syscallent.h: Likewise.
* linux/bfin/syscallent.h: Likewise.
* linux/hppa/syscallent.h: Likewise.
* linux/i386/syscallent.h: Likewise.
* linux/m68k/syscallent.h: Likewise.
* linux/microblaze/syscallent.h: Likewise.
* linux/powerpc/syscallent.h: Likewise.
* linux/powerpc64/syscallent.h: Likewise.
* linux/s390/syscallent.h: Likewise.
* linux/s390x/syscallent.h: Likewise.
* linux/sh/syscallent.h: Likewise.
* linux/sh64/syscallent.h: Likewise.
* linux/sparc/syscallent.h: Likewise.
* linux/sparc64/syscallent.h: Likewise.
* linux/x32/syscallent.h: Likewise.
* linux/x86_64/syscallent.h: Likewise.
* linux/xtensa/syscallent.h: Likewise.
Diffstat (limited to 'linux/avr32/syscallent.h')
-rw-r--r-- | linux/avr32/syscallent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/avr32/syscallent.h b/linux/avr32/syscallent.h index d9975588d..a14be5539 100644 --- a/linux/avr32/syscallent.h +++ b/linux/avr32/syscallent.h @@ -91,7 +91,7 @@ [ 62] = { 2, TSFA, SEN(ustat), "ustat" }, [ 63] = { 2, TD, SEN(dup2), "dup2" }, [ 64] = { 0, NF, SEN(getppid), "getppid" }, -[ 65] = { 0, 0, SEN(getpgrp), "getpgrp" }, +[ 65] = { 0, NF, SEN(getpgrp), "getpgrp" }, [ 66] = { 0, 0, SEN(setsid), "setsid" }, [ 67] = { 4, TS, SEN(rt_sigaction), "rt_sigaction" }, [ 68] = { 0, TS, SEN(rt_sigreturn), "rt_sigreturn" }, |