9664ba0c4f
Added interface to select() for pipes (also named pipes), and select() stubs for regular files. Added timer library in FS that select() is the first customer of. This is unfinished, but committed anyway to get a new release out to Al and testers.
10 lines
178 B
C
10 lines
178 B
C
|
|
#ifndef _FS_SELECT_H
|
|
#define _FS_SELECT_H 1
|
|
|
|
/* return codes for select_request_* and select_cancel_* */
|
|
#define SEL_OK 0 /* ready */
|
|
#define SEL_ERROR 1 /* failed */
|
|
|
|
#endif
|
|
|