git.ucc.asn.au
/
tpg
/
acess2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' of ted.mutabah.net:acess2
[tpg/acess2.git]
/
Usermode
/
Libraries
/
libposix.so_src
/
include_exp
/
sys
/
select.h
1
/*
2
* Acess2 POSIX Emulation Layer
3
* - By John Hodge
4
*
5
* sys/select.h
6
* - select(2)
7
*/
8
#ifndef _SYS__SELECT_H_
9
#define _SYS__SELECT_H_
10
11
#include <acess/fd_set.h>
12
13
extern int select(int nfds, fd_set *readfds, fd_set *writefds, struct timeval *timeout);
14
// TODO: pselect?
15
16
#endif
17
UCC
git Repository :: git.ucc.asn.au