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 | 09496c72b8d12b1f52fde76448f9b5e400f0807c (patch) | |
tree | 1caaa4314617098bc69467e964552aab9153de67 /linux/sh64/syscallent.h | |
parent | 4ddf26e06dc989dca3b5d6f0c056707f9aa1c61e (diff) | |
download | strace-09496c72b8d12b1f52fde76448f9b5e400f0807c.tar.gz |
Implement and use new parsers of timerfd_gettime and timerfd_settime syscalls
* time.c (SYS_FUNC(timerfd_gettime), SYS_FUNC(timerfd_settime)): Remove.
[HAVE_ARCH_TIME32_SYSCALLS] (SYS_FUNC(timerfd_gettime32),
SYS_FUNC(timerfd_settime32)): New functions.
* pathtrace.c (pathtrace_match_set): Replace SEN_timerfd_gettime and
SEN_timerfd_settime with SEN_timerfd_gettime32 and
SEN_timerfd_settime32, respectively.
* linux/64/syscallent.h: Replace SEN(timerfd_gettime) and
SEN(timerfd_settime) with SEN(timerfd_gettime64) and
SEN(timerfd_settime64), respectively.
* 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(timerfd_gettime) and
SEN(timerfd_settime) with SEN(timerfd_gettime32) and
SEN(timerfd_settime32), respectively.
* 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/sh64/syscallent.h')
-rw-r--r-- | linux/sh64/syscallent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/sh64/syscallent.h b/linux/sh64/syscallent.h index bf0104333..4b9212839 100644 --- a/linux/sh64/syscallent.h +++ b/linux/sh64/syscallent.h @@ -357,8 +357,8 @@ [350] = { 2, TD, SEN(timerfd_create), "timerfd_create" }, [351] = { 1, TD, SEN(eventfd), "eventfd" }, [352] = { 4, TD, SEN(fallocate), "fallocate" }, -[353] = { 4, TD, SEN(timerfd_settime), "timerfd_settime" }, -[354] = { 2, TD, SEN(timerfd_gettime), "timerfd_gettime" }, +[353] = { 4, TD, SEN(timerfd_settime64), "timerfd_settime" }, +[354] = { 2, TD, SEN(timerfd_gettime64), "timerfd_gettime" }, [355] = { 4, TD|TS, SEN(signalfd4), "signalfd4" }, [356] = { 2, TD, SEN(eventfd2), "eventfd2" }, [357] = { 1, TD, SEN(epoll_create1), "epoll_create1" }, |