4f294c247f
This patch mainly copies and modifies files existing in the current libc implementing minix specific functions. To keep consisten with the NetBSD libc, we remove namespace stubs and we use "namespace.h" and weak links.
22 lines
447 B
C
22 lines
447 B
C
#include <sys/cdefs.h>
|
|
#include <lib.h>
|
|
#include "namespace.h"
|
|
|
|
#include <sys/time.h>
|
|
#include <sys/select.h>
|
|
|
|
int select(int nfds,
|
|
fd_set *readfds, fd_set *writefds, fd_set *errorfds,
|
|
struct timeval *timeout)
|
|
{
|
|
message m;
|
|
|
|
m.SEL_NFDS = nfds;
|
|
m.SEL_READFDS = (char *) readfds;
|
|
m.SEL_WRITEFDS = (char *) writefds;
|
|
m.SEL_ERRORFDS = (char *) errorfds;
|
|
m.SEL_TIMEOUT = (char *) timeout;
|
|
|
|
return (_syscall(VFS_PROC_NR, SELECT, &m));
|
|
}
|
|
|