From: Roland McGrath Date: Tue, 20 May 2008 04:56:22 +0000 (+0000) Subject: 2008-05-19 Roland McGrath X-Git-Tag: v4.5.18~66 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=30713bebba026820364b8d9b15ee180f36a91929;p=strace 2008-05-19 Roland McGrath * file.c (sys_fallocate): New function. * linux/syscall.h: Declare it. * linux/syscallent.h: Update entry. From Kyle McMartin . * time.c (sys_timerfd_create): New function. (sys_timerfd_settime, sys_timerfd_gettime): New functions. * linux/syscall.h: Declare them. * linux/syscallent.h: Update entries for those syscalls. From Kyle McMartin . --- diff --git a/linux/syscall.h b/linux/syscall.h index f078bf56..32808712 100644 --- a/linux/syscall.h +++ b/linux/syscall.h @@ -104,6 +104,7 @@ int sys_arch_prctl(); int sys_io_setup(), sys_io_submit(), sys_io_cancel(), sys_io_getevents(), sys_io_destroy(); int sys_utimensat(), sys_epoll_pwait(), sys_signalfd(), sys_timerfd(), sys_eventfd(); int sys_getcpu(); +int sys_fallocate(), sys_timerfd_create(), sys_timerfd_settime(), sys_timerfd_gettime(); /* sys_socketcall subcalls */ diff --git a/linux/syscallent.h b/linux/syscallent.h index 01642439..a777c177 100644 --- a/linux/syscallent.h +++ b/linux/syscallent.h @@ -352,10 +352,11 @@ { 5, TD, sys_epoll_pwait, "epoll_pwait" }, /* 319 */ { 4, TD|TF, sys_utimensat, "utimensat" }, /* 320 */ { 3, TD|TS, sys_signalfd, "signalfd" }, /* 321 */ - { 4, TD, sys_timerfd, "timerfd" }, /* 322 */ + { 2, TD, sys_timerfd_create, "timerfd_create"}, /* 322 */ { 1, TD, sys_eventfd, "eventfd" }, /* 323 */ - { 5, 0, printargs, "SYS_324" }, /* 324 */ - { 5, 0, printargs, "SYS_325" }, /* 325 */ + { 6, TF, sys_fallocate, "fallocate" }, /* 324 */ + { 4, TD, sys_timerfd_settime, "timerfd_settime"}, /* 325 */ + { 2, TD, sys_timerfd_gettime, "timerfd_gettime"}, /* 326 */ { 5, 0, printargs, "SYS_326" }, /* 326 */ { 5, 0, printargs, "SYS_327" }, /* 327 */ { 5, 0, printargs, "SYS_328" }, /* 328 */