diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2004-02-17 20:08:44 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2004-02-17 20:08:44 +0000 |
commit | 22e106a4e087925644f74fc378a3015c22f2e163 (patch) | |
tree | 4dac3857c89005520918924cf834bc647ea53990 /sys | |
parent | df35548390d8bbf4e0414a8cbf816a9d09d66031 (diff) |
kqueue works using native calls
once from art@ a while back, again from Jason Ackley <jason@ackley.net>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/compat/freebsd/syscalls.master | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/compat/freebsd/syscalls.master b/sys/compat/freebsd/syscalls.master index 52fd282f127..769220f9e89 100644 --- a/sys/compat/freebsd/syscalls.master +++ b/sys/compat/freebsd/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.22 2003/08/24 00:02:42 tedu Exp $ + $OpenBSD: syscalls.master,v 1.23 2004/02/17 20:08:43 tedu Exp $ ; $NetBSD: syscalls.master,v 1.3 1995/10/10 18:28:40 mycroft Exp $ ; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -586,5 +586,7 @@ 359 UNIMPL aio_waitcomplete 360 UNIMPL getresuid 361 UNIMPL getresgid -362 UNIMPL kqueue -363 UNIMPL kevent +362 NOARGS { int sys_kqueue(void); } +363 NOARGS { int sys_kevent(int kq, const struct kevent *changelist, \ + int nchanges, struct kevent *eventlist, int nevents, \ + const struct timespec *timeout); } |