diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-09-23 16:46:03 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-09-23 16:46:03 +0000 |
commit | 17d00afac4616d1a7a0f4198c5945332346638b8 (patch) | |
tree | 1caea11a8fb4ae4d00a64ac71185db30686adf13 /sys | |
parent | 52ad5ce3afef2cfd7e2297855671baae289dd941 (diff) |
Prepare for conversion of select backend -> poll
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/vnode_if.src | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/sys/kern/vnode_if.src b/sys/kern/vnode_if.src index 8b8c002574e..dca2a7f2937 100644 --- a/sys/kern/vnode_if.src +++ b/sys/kern/vnode_if.src @@ -1,4 +1,4 @@ -# $OpenBSD: vnode_if.src,v 1.22 2003/07/21 22:44:50 tedu Exp $ +# $OpenBSD: vnode_if.src,v 1.23 2003/09/23 16:46:02 millert Exp $ # $NetBSD: vnode_if.src,v 1.10 1996/05/11 18:26:27 mycroft Exp $ # # Copyright (c) 1992, 1993 @@ -210,15 +210,11 @@ vop_ioctl { }; # -#% select vp U U U +#% poll vp U U U # -# Needs work? (fflags) -# -vop_select { +vop_poll { IN struct vnode *vp; - IN int which; - IN int fflags; - IN struct ucred *cred; + IN int events; IN struct proc *p; }; |