mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-03 09:48:29 +00:00
Add epoll and do more release readiness changes
This change also pays off some of the remaining technical debt with stdio, file descriptors, and memory managemnt polyfills.
This commit is contained in:
parent
a9ea949df8
commit
3e4fd4b0ad
271 changed files with 5706 additions and 1365 deletions
13
libc/nt/enum/afd.h
Normal file
13
libc/nt/enum/afd.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
#ifndef COSMOPOLITAN_LIBC_NT_ENUM_AFD_H_
|
||||
#define COSMOPOLITAN_LIBC_NT_ENUM_AFD_H_
|
||||
|
||||
#define kNtAfdPollReceive 0x0001
|
||||
#define kNtAfdPollReceiveExpedited 0x0002
|
||||
#define kNtAfdPollSend 0x0004
|
||||
#define kNtAfdPollDisconnect 0x0008
|
||||
#define kNtAfdPollAbort 0x0010
|
||||
#define kNtAfdPollLocalClose 0x0020
|
||||
#define kNtAfdPollAccept 0x0080
|
||||
#define kNtAfdPollConnectFail 0x0100
|
||||
|
||||
#endif /* COSMOPOLITAN_LIBC_NT_ENUM_AFD_H_ */
|
Loading…
Add table
Add a link
Reference in a new issue