diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2015-12-08 20:58:38 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2015-12-08 21:19:53 +0000 |
commit | 2b722e20c80c7cfeda5c2c2ac4407a06f0a0ac3b (patch) | |
tree | 7beac7aa5f4f4f17bee2f84754a5f4baf5142881 /linux | |
parent | 57dfe5f81409cb52feb63e89b4199eee26a0489c (diff) | |
download | strace-2b722e20c80c7cfeda5c2c2ac4407a06f0a0ac3b.tar.gz |
sh, sh64: fix syscall entries
* linux/sh/syscallent.h [322]: Fix timerfd_create entry.
* linux/sh64/syscallent.h [350]: Likewise.
[0]: Fix restart_syscall entry.
Diffstat (limited to 'linux')
-rw-r--r-- | linux/sh/syscallent.h | 2 | ||||
-rw-r--r-- | linux/sh64/syscallent.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/linux/sh/syscallent.h b/linux/sh/syscallent.h index 9fdae9d0f..4715d2719 100644 --- a/linux/sh/syscallent.h +++ b/linux/sh/syscallent.h @@ -347,7 +347,7 @@ [319] = { 6, TD, SEN(epoll_pwait), "epoll_pwait" }, [320] = { 4, TD|TF, SEN(utimensat), "utimensat" }, [321] = { 3, TD|TS, SEN(signalfd), "signalfd" }, -[322] = { 4, TD, SEN(timerfd), "timerfd" }, +[322] = { 2, TD, SEN(timerfd_create), "timerfd_create" }, [323] = { 1, TD, SEN(eventfd), "eventfd" }, [324] = { 6, TD, SEN(fallocate), "fallocate" }, [325] = { 4, TD, SEN(timerfd_settime), "timerfd_settime" }, diff --git a/linux/sh64/syscallent.h b/linux/sh64/syscallent.h index a842addfe..614ba81e5 100644 --- a/linux/sh64/syscallent.h +++ b/linux/sh64/syscallent.h @@ -26,7 +26,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -[ 0] = { 0, 0, SEN(setup), "setup" }, +[ 0] = { 0, 0, SEN(restart_syscall), "restart_syscall" }, [ 1] = { 1, TP|SE, SEN(exit), "exit" }, [ 2] = { 0, TP, SEN(fork), "fork" }, [ 3] = { 3, TD, SEN(read), "read" }, @@ -373,7 +373,7 @@ [347] = { 6, TD, SEN(epoll_pwait), "epoll_pwait" }, [348] = { 4, TD|TF, SEN(utimensat), "utimensat" }, [349] = { 3, TD|TS, SEN(signalfd), "signalfd" }, -[350] = { 4, TD, SEN(timerfd), "timerfd" }, +[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" }, |