2011-02-17 18:11:09 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <lib.h>
|
|
|
|
#include "namespace.h"
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
#include <string.h>
|
2011-02-17 18:11:09 +01:00
|
|
|
#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;
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
memset(&m, 0, sizeof(m));
|
|
|
|
m.VFS_SELECT_NFDS = nfds;
|
|
|
|
m.VFS_SELECT_READFDS = (char *) readfds;
|
|
|
|
m.VFS_SELECT_WRITEFDS = (char *) writefds;
|
|
|
|
m.VFS_SELECT_ERRORFDS = (char *) errorfds;
|
|
|
|
m.VFS_SELECT_TIMEOUT = (char *) timeout;
|
2011-02-17 18:11:09 +01:00
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
return (_syscall(VFS_PROC_NR, VFS_SELECT, &m));
|
2011-02-17 18:11:09 +01:00
|
|
|
}
|
|
|
|
|
2013-01-07 20:10:08 +01:00
|
|
|
|
2013-01-18 00:06:11 +01:00
|
|
|
#if defined(__minix) && defined(__weak_alias)
|
2013-01-07 20:10:08 +01:00
|
|
|
__weak_alias(select, __select50)
|
|
|
|
#endif
|