Zap nxselect and noselect.

This commit is contained in:
Peter Wemm 1997-09-14 02:50:28 +00:00
parent 7fab77996c
commit d87652c3de

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)subr_xxx.c 8.1 (Berkeley) 6/10/93
* $Id$
* $Id: subr_xxx.c,v 1.8 1997/02/22 09:39:18 peter Exp $
*/
/*
@ -158,17 +158,6 @@ nodevtotty(dev)
return (NULL);
}
int
noselect(dev, rw, p)
dev_t dev;
int rw;
struct proc *p;
{
/* XXX is this distinguished from 1 for data available? */
return (ENODEV);
}
int
nommap(dev, offset, nprot)
dev_t dev;
@ -288,19 +277,6 @@ nxioctl(dev, cmd, data, flags, p)
return (ENXIO);
}
int
nxselect(dev, rw, p)
dev_t dev;
int rw;
struct proc *p;
{
printf("nxselect(0x%x) called\n", dev);
/* XXX is this distinguished from 1 for data available? */
return (ENXIO);
}
int
nxdump(dev)
dev_t dev;