mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-07 19:58:30 +00:00
Put more thought into i/o polyfills
wait4() is now solid enough to run `make -j100` on Windows. You can now use MSG_DONTWAIT on Windows. There was a handle leak in accept() that's been fixed. Our WIN32 overlapped i/o code has been simplified. Priority class now inherits into subprocesses, so the verynice command will work and the signal mask will now be inherited by execve() and posix_spawn()
This commit is contained in:
parent
736fdb757a
commit
e961385e55
52 changed files with 679 additions and 487 deletions
|
@ -43,7 +43,7 @@
|
|||
* @param fd is the file descriptor returned by socket()
|
||||
* @param buf is the data to send, which we'll copy if necessary
|
||||
* @param size is the byte-length of buf
|
||||
* @param flags MSG_OOB, MSG_DONTROUTE, MSG_PARTIAL, MSG_NOSIGNAL, etc.
|
||||
* @param flags can have `MSG_OOB`, `MSG_DONTROUTE`, and `MSG_DONTWAIT`
|
||||
* @param opt_addr is a binary ip:port destination override, which is
|
||||
* mandatory for UDP if connect() wasn't called
|
||||
* @param addrsize is the byte-length of addr's true polymorphic form
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue