summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-03-09 15:11:48 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-03-09 15:11:48 +0000
commit8de6413dbc22f3c160955a87bdb311fd55bc067f (patch)
tree446d337691a8fa97fca438595365ffb578503f87 /sys/kern
parent82c5f4e0816d23ebb286569c6bfd845ce1cae8a1 (diff)
Add mlockall and munlockall (dummy for the old vm system).
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/syscalls.master5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 7232e9e1ca5..1202c4a9bcb 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -1,4 +1,4 @@
-; $OpenBSD: syscalls.master,v 1.43 2000/11/16 20:02:17 provos Exp $
+; $OpenBSD: syscalls.master,v 1.44 2001/03/09 15:11:47 art Exp $
; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@@ -530,3 +530,6 @@
const struct kevent *changelist, int nchanges, \
struct kevent *eventlist, int nevents, \
const struct timespec *timeout); }
+271 STD { int sys_mlockall(int flags); }
+272 STD { int sys_munlockall(void); }
+