Modify poll(2) prototype.
This commit is contained in:
parent
07d2eae876
commit
1449e67e30
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: syscalls.master,v 1.11 1996/09/07 13:23:39 mycroft Exp $
|
||||
$NetBSD: syscalls.master,v 1.12 1996/09/07 14:21:57 mycroft Exp $
|
||||
|
||||
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
|
||||
|
||||
|
@ -368,7 +368,7 @@
|
|||
266 UNIMPL
|
||||
267 UNIMPL
|
||||
268 NOARGS { int compat_43_sys_getdtablesize(void); }
|
||||
269 NOARGS { int sys_poll(struct pollfd *fds, size_t nfds, \
|
||||
269 NOARGS { int sys_poll(struct pollfd *fds, u_int nfds, \
|
||||
int timeout); }
|
||||
270 UNIMPL
|
||||
271 UNIMPL
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: syscalls.master,v 1.9 1996/09/07 12:40:44 mycroft Exp $
|
||||
$NetBSD: syscalls.master,v 1.10 1996/09/07 14:21:59 mycroft Exp $
|
||||
|
||||
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
|
||||
|
||||
|
@ -157,7 +157,7 @@
|
|||
86 STD { int ibcs2_sys_putmsg(int fd, \
|
||||
struct ibcs2_stropts *ctl, \
|
||||
struct ibcs2_stropts *dat, int flags); }
|
||||
87 NOARGS { int sys_poll(struct pollfd *fds, size_t nfds, \
|
||||
87 NOARGS { int sys_poll(struct pollfd *fds, u_int nfds, \
|
||||
int timeout); }
|
||||
88 UNIMPL
|
||||
89 UNIMPL
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: syscalls.master,v 1.4 1996/09/07 12:40:46 mycroft Exp $
|
||||
$NetBSD: syscalls.master,v 1.5 1996/09/07 14:22:00 mycroft Exp $
|
||||
|
||||
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
|
||||
|
||||
|
@ -147,7 +147,7 @@
|
|||
92 STD { int osf1_sys_fcntl(int fd, int cmd, void *arg); }
|
||||
93 NOARGS { int sys_select(u_int nd, fd_set *in, fd_set *ou, \
|
||||
fd_set *ex, struct timeval *tv); }
|
||||
94 NOARGS { int sys_poll(struct pollfd *fds, size_t nfds, \
|
||||
94 NOARGS { int sys_poll(struct pollfd *fds, u_int nfds, \
|
||||
int timeout); }
|
||||
95 NOARGS { int sys_fsync(int fd); }
|
||||
96 NOARGS { int sys_setpriority(int which, int who, int prio); }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: syscalls.master,v 1.37 1996/09/07 12:40:49 mycroft Exp $
|
||||
$NetBSD: syscalls.master,v 1.38 1996/09/07 14:22:01 mycroft Exp $
|
||||
|
||||
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
|
||||
|
||||
|
@ -232,7 +232,7 @@
|
|||
int *alen); }
|
||||
151 UNIMPL getmsg
|
||||
152 UNIMPL putmsg
|
||||
153 NOARGS { int sys_poll(struct pollfd *fds, size_t nfds, \
|
||||
153 NOARGS { int sys_poll(struct pollfd *fds, u_int nfds, \
|
||||
int timeout); }
|
||||
154 UNIMPL
|
||||
#ifdef NFSSERVER
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: syscalls.master,v 1.18 1996/09/07 12:40:52 mycroft Exp $
|
||||
$NetBSD: syscalls.master,v 1.19 1996/09/07 14:22:02 mycroft Exp $
|
||||
|
||||
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
|
||||
|
||||
|
@ -154,7 +154,7 @@
|
|||
struct svr4_strbuf *dat, int *flags); }
|
||||
86 STD { int svr4_sys_putmsg(int fd, struct svr4_strbuf *ctl, \
|
||||
struct svr4_strbuf *dat, int flags); }
|
||||
87 NOARGS { int sys_poll(struct pollfd *fds, size_t nfds, \
|
||||
87 NOARGS { int sys_poll(struct pollfd *fds, u_int nfds, \
|
||||
int timeout); }
|
||||
88 STD { int svr4_sys_lstat(char *path, \
|
||||
struct svr4_stat *ub); }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: sys_generic.c,v 1.28 1996/09/07 12:40:59 mycroft Exp $ */
|
||||
/* $NetBSD: sys_generic.c,v 1.29 1996/09/07 14:20:09 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1982, 1986, 1989, 1993
|
||||
|
@ -680,7 +680,7 @@ sys_poll(p, v, retval)
|
|||
{
|
||||
register struct sys_poll_args /* {
|
||||
syscallarg(struct pollfd *) fds;
|
||||
syscallarg(size_t) nfds;
|
||||
syscallarg(u_int) nfds;
|
||||
syscallarg(int) timeout;
|
||||
} */ *uap = v;
|
||||
caddr_t bits;
|
||||
|
|
Loading…
Reference in New Issue