diff options
Diffstat (limited to 'sys/compat/linux/linux_syscall.h')
-rw-r--r-- | sys/compat/linux/linux_syscall.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_syscall.h b/sys/compat/linux/linux_syscall.h index f7ecc0b2d1f..11b170eb2ae 100644 --- a/sys/compat/linux/linux_syscall.h +++ b/sys/compat/linux/linux_syscall.h @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_syscall.h,v 1.54 2010/06/30 21:54:35 guenther Exp $ */ +/* $OpenBSD: linux_syscall.h,v 1.55 2011/02/10 12:00:01 pirofti Exp $ */ /* * System call numbers. @@ -724,4 +724,10 @@ /* syscall: "linux_exit_group" ret: "int" args: "int" */ #define LINUX_SYS_linux_exit_group 252 +/* syscall: "clock_gettime" ret: "int" args: "clockid_t" "struct l_timespec *" */ +#define LINUX_SYS_clock_gettime 265 + +/* syscall: "clock_getres" ret: "int" args: "clockid_t" "struct l_timespec *" */ +#define LINUX_SYS_clock_getres 266 + #define LINUX_SYS_MAXSYSCALL 268 |