diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-18 08:53:12 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-18 08:53:12 +0000 |
commit | 49b93a47757d509217c0ac5cb322971163f11208 (patch) | |
tree | 7474054ada7215748743da21419ed71d1c3f2818 /sys/kern/syscalls.master | |
parent | 3abfcc0df93dc31551516b068e3e407eafba0784 (diff) |
poll() as a system call
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r-- | sys/kern/syscalls.master | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 8f5c8934aea..c1767a2de19 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.8 1996/05/02 13:09:50 deraadt Exp $ + $OpenBSD: syscalls.master,v 1.9 1996/05/18 08:53:10 deraadt Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -37,6 +37,7 @@ #include <sys/signal.h> #include <sys/mount.h> #include <sys/syscallargs.h> +#include <sys/poll.h> ; Reserved/unimplemented system calls in the range 0-150 inclusive ; are reserved for use in future Berkeley releases. @@ -452,3 +453,5 @@ 250 STD { int sys_minherit(caddr_t addr, size_t len, \ int inherit); } 251 STD { int sys_rfork(int flags); } +252 STD { int sys_poll(struct pollfd *fds, unsigned long nfds, \ + int timeout); } |