aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/syscalls.master
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r--sys/kern/syscalls.master20
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 158ea7036d50..69a669844629 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -3318,6 +3318,26 @@
int cpu_id
);
}
+585 AUE_TIMERFD STD|CAPENABLED {
+ int timerfd_create(
+ int clockid,
+ int flags
+ );
+ }
+586 AUE_TIMERFD STD|CAPENABLED {
+ int timerfd_gettime(
+ int fd,
+ _Out_ _Contains_long_timet_ struct itimerspec *curr_value
+ );
+ }
+587 AUE_TIMERFD STD|CAPENABLED {
+ int timerfd_settime(
+ int fd,
+ int flags,
+ _In_ _Contains_long_timet_ const struct itimerspec *new_value,
+ _Out_opt_ _Contains_long_timet_ struct itimerspec *old_value
+ );
+ }
; vim: syntax=off