diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2019-05-12 22:45:45 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2019-05-12 22:45:45 +0000 |
commit | e09c9c54de8a9014f6f4f6dc22a4289bcadc2cd0 (patch) | |
tree | 819339401c96a016aa19b841830cce40aedd76c8 /linux/avr32/syscallent.h | |
parent | 9b58006f8e68aa9dabe9cee1034a93f7cd8c7a68 (diff) | |
download | strace-e09c9c54de8a9014f6f4f6dc22a4289bcadc2cd0.tar.gz |
Implement and use new parsers of nanosleep syscall
* time.c (SYS_FUNC(nanosleep)): Remove.
[HAVE_ARCH_TIME32_SYSCALLS || HAVE_ARCH_OLD_TIME64_SYSCALLS]
(do_nanosleep): New function.
[HAVE_ARCH_TIME32_SYSCALLS] (SYS_FUNC(nanosleep_time32)): Likewise.
[HAVE_ARCH_OLD_TIME64_SYSCALLS] (SYS_FUNC(nanosleep_time64)): Likewise.
* linux/64/syscallent.h: Replace SEN(nanosleep) with
SEN(nanosleep_time64).
* linux/alpha/syscallent.h: Likewise.
* linux/ia64/syscallent.h: Likewise.
* linux/mips/syscallent-n64.h: Likewise.
* linux/powerpc64/syscallent.h: Likewise.
* linux/s390x/syscallent.h: Likewise.
* linux/sh64/syscallent.h: Likewise.
* linux/sparc64/syscallent.h: Likewise.
* linux/x32/syscallent.h: Likewise.
* linux/x86_64/syscallent.h: Likewise.
* linux/32/syscallent.h: Replace SEN(nanosleep) with
SEN(nanosleep_time32).
* 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/mips/syscallent-n32.h: Likewise.
* linux/mips/syscallent-o32.h: Likewise.
* linux/powerpc/syscallent.h: Likewise.
* linux/s390/syscallent.h: Likewise.
* linux/sh/syscallent.h: Likewise.
* linux/sparc/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 1c38aa896..e7aa0cacc 100644 --- a/linux/avr32/syscallent.h +++ b/linux/avr32/syscallent.h @@ -149,7 +149,7 @@ [140] = { 1, 0, SEN(sched_get_priority_max), "sched_get_priority_max"}, [141] = { 1, 0, SEN(sched_get_priority_min), "sched_get_priority_min"}, [142] = { 2, 0, SEN(sched_rr_get_interval_time32),"sched_rr_get_interval"}, -[143] = { 2, 0, SEN(nanosleep), "nanosleep" }, +[143] = { 2, 0, SEN(nanosleep_time32), "nanosleep" }, [144] = { 3, TD, SEN(poll_time32), "poll" }, [145] = { 3, 0, SEN(nfsservctl), "nfsservctl" }, [146] = { 3, 0, SEN(setresgid), "setresgid" }, |