diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-09-23 16:51:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-09-23 16:51:15 +0000 |
commit | 6bb276a1685d8546283d224a3d249c66cc329264 (patch) | |
tree | 5e1c80d6cad38a8a82f5832e1e315103e7029eb9 /sys/xfs/xfs_vopdefs.h | |
parent | 96675671ec2520ade2f83b31563ab4da72bd443d (diff) |
Replace select backends with poll backends. selscan() and pollscan()
now call the poll backend. With this change we implement greater
poll(2) functionality instead of emulating it via the select backend.
Adapted from NetBSD and including some changes from FreeBSD.
Tested by many, deraadt@ OK
Diffstat (limited to 'sys/xfs/xfs_vopdefs.h')
-rw-r--r-- | sys/xfs/xfs_vopdefs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/xfs/xfs_vopdefs.h b/sys/xfs/xfs_vopdefs.h index c3220589e1d..401a4015727 100644 --- a/sys/xfs/xfs_vopdefs.h +++ b/sys/xfs/xfs_vopdefs.h @@ -24,8 +24,8 @@ NNPFS_VOP_DEF(write); NNPFS_VOP_DEF(lease); #define HAVE_VOP_IOCTL 1 NNPFS_VOP_DEF(ioctl); -#define HAVE_VOP_SELECT 1 -NNPFS_VOP_DEF(select); +#define HAVE_VOP_POLL 1 +NNPFS_VOP_DEF(poll); #define HAVE_VOP_KQFILTER 1 NNPFS_VOP_DEF(kqfilter); #define HAVE_VOP_REVOKE 1 |