URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib-1.10.0/] [newlib/] [libc/] [sys/] [linux/] [select.c] - Rev 1010
Go to most recent revision | Compare with Previous | Blame | View Log
/* libc/sys/linux/select.c - The select system calls */ /* Written 2000 by Werner Almesberger */ #include <sys/types.h> #include <sys/time.h> #include <sys/syscall.h> _syscall5(int,select,int,n,fd_set *,readfds,fd_set *,writefds, fd_set *,exceptfds,struct timeval *,timeout)
Go to most recent revision | Compare with Previous | Blame | View Log