summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcheloha <cheloha@cvs.openbsd.org>2021-05-04 18:10:25 +0000
committercheloha <cheloha@cvs.openbsd.org>2021-05-04 18:10:25 +0000
commit0d4e618ea193f0241ee6a4d1342bf78a2a532be3 (patch)
tree3b1b8482f961578b1961a4a7a34611f03e47b378
parente420595dfe015227f6feae7b244e23171857da32 (diff)
getitimer(2), setitimer(2): unlock syscalls
With the changes in kern_time.c v1.150, neither getitimer(2) nor setitimer(2) need the kernel lock anymore. ok anton@, mpi@
-rw-r--r--sys/kern/syscalls.master6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 33758258899..e3773768f34 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -1,4 +1,4 @@
-; $OpenBSD: syscalls.master,v 1.209 2021/03/18 08:43:38 mvs Exp $
+; $OpenBSD: syscalls.master,v 1.210 2021/05/04 18:10:24 cheloha Exp $
; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@@ -159,10 +159,10 @@
struct timezone *tzp); }
68 STD NOLOCK { int sys_settimeofday(const struct timeval *tv, \
const struct timezone *tzp); }
-69 STD { int sys_setitimer(int which, \
+69 STD NOLOCK { int sys_setitimer(int which, \
const struct itimerval *itv, \
struct itimerval *oitv); }
-70 STD { int sys_getitimer(int which, \
+70 STD NOLOCK { int sys_getitimer(int which, \
struct itimerval *itv); }
71 STD { int sys_select(int nd, fd_set *in, fd_set *ou, \
fd_set *ex, struct timeval *tv); }