Add poll to the list of hidden syscalls so that it gets renamed. This

propagates a bug (that there is no poll wrapper in libc_r), but it
prevents GNU configure scripts from trying to use it in preference
to select. libc_r really needs to change it's wait interface to use
poll instead of select because poll is more a superset of select that
the other way around.

This should allow the Roxen web server to work out-of-the-box. It's
configuration intercae is kinda neat. The code isn't. Shiver. 8-)
This commit is contained in:
John Birrell 1998-06-12 02:21:27 +00:00
parent 06ca87e9f7
commit 0b99d9d8ac
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=36905
3 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.10 1998/06/01 02:12:15 jb Exp $
# $Id: Makefile,v 1.11 1998/06/09 23:25:13 jb Exp $
#
# All library objects contain rcsid strings by default; they may be
# excluded as a space-saving measure. To produce a library that does
@ -26,7 +26,7 @@ HIDDEN_SYSCALLS= accept.o bind.o close.o connect.o dup.o dup2.o \
execve.o fchflags.o fchmod.o fchown.o fcntl.o \
flock.o fpathconf.o fstat.o fstatfs.o fsync.o getdirentries.o \
getpeername.o getsockname.o getsockopt.o ioctl.o listen.o \
mknod.o nanosleep.o nfssvc.o open.o read.o readv.o recvfrom.o \
mknod.o nanosleep.o nfssvc.o open.o poll.o read.o readv.o recvfrom.o \
recvmsg.o sched_yield.o select.o sendmsg.o sendto.o \
setsockopt.o shutdown.o sigaction.o sigaltstack.o \
signanosleep.o socket.o socketpair.o wait4.o write.o writev.o

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.10 1998/06/01 02:12:15 jb Exp $
# $Id: Makefile,v 1.11 1998/06/09 23:25:13 jb Exp $
#
# All library objects contain rcsid strings by default; they may be
# excluded as a space-saving measure. To produce a library that does
@ -26,7 +26,7 @@ HIDDEN_SYSCALLS= accept.o bind.o close.o connect.o dup.o dup2.o \
execve.o fchflags.o fchmod.o fchown.o fcntl.o \
flock.o fpathconf.o fstat.o fstatfs.o fsync.o getdirentries.o \
getpeername.o getsockname.o getsockopt.o ioctl.o listen.o \
mknod.o nanosleep.o nfssvc.o open.o read.o readv.o recvfrom.o \
mknod.o nanosleep.o nfssvc.o open.o poll.o read.o readv.o recvfrom.o \
recvmsg.o sched_yield.o select.o sendmsg.o sendto.o \
setsockopt.o shutdown.o sigaction.o sigaltstack.o \
signanosleep.o socket.o socketpair.o wait4.o write.o writev.o

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.10 1998/06/01 02:12:15 jb Exp $
# $Id: Makefile,v 1.11 1998/06/09 23:25:13 jb Exp $
#
# All library objects contain rcsid strings by default; they may be
# excluded as a space-saving measure. To produce a library that does
@ -26,7 +26,7 @@ HIDDEN_SYSCALLS= accept.o bind.o close.o connect.o dup.o dup2.o \
execve.o fchflags.o fchmod.o fchown.o fcntl.o \
flock.o fpathconf.o fstat.o fstatfs.o fsync.o getdirentries.o \
getpeername.o getsockname.o getsockopt.o ioctl.o listen.o \
mknod.o nanosleep.o nfssvc.o open.o read.o readv.o recvfrom.o \
mknod.o nanosleep.o nfssvc.o open.o poll.o read.o readv.o recvfrom.o \
recvmsg.o sched_yield.o select.o sendmsg.o sendto.o \
setsockopt.o shutdown.o sigaction.o sigaltstack.o \
signanosleep.o socket.o socketpair.o wait4.o write.o writev.o