summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/luasocket/src/select.h
blob: 8750200395a026e76f07c667807ad5c7ef58fd32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef SELECT_H
#define SELECT_H
/*=========================================================================*\
* Select implementation
* LuaSocket toolkit
*
* Each object that can be passed to the select function has to export 
* method getfd() which returns the descriptor to be passed to the
* underlying select function. Another method, dirty(), should return 
* true if there is data ready for reading (required for buffered input).
\*=========================================================================*/

int select_open(lua_State *L);

#endif /* SELECT_H */