aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/syscalls.master
diff options
context:
space:
mode:
authorJake Freeland <jfree@freebsd.org>2023-08-24 04:39:54 +0000
committerWarner Losh <imp@FreeBSD.org>2023-08-24 20:28:56 +0000
commitaf93fea710385b2b11f0cabd377e7ed6f3d97c34 (patch)
treea1b50fbac6aebce0428a89a99958809ad243f8a2 /sys/kern/syscalls.master
parentf8bc606aad35daf9853e3198f14d4a7baba36fcb (diff)
downloadsrc-af93fea710385b2b11f0cabd377e7ed6f3d97c34.tar.gz
src-af93fea710385b2b11f0cabd377e7ed6f3d97c34.zip
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