f7b4e650 | 11-Aug-2011 |
Ryan Dahl |
unix: introduce SPAWN_WAIT_EXEC to turn off poll feature |
11aa1ea0 | 11-Aug-2011 |
Ryan Dahl |
Remove unnecessary casts |
ca633920 | 11-Aug-2011 |
Bert Belder |
Windows: fix pipe shutdown |
a8941045 | 11-Aug-2011 |
Bert Belder |
Whitespace |
e8497aee | 11-Aug-2011 |
Ben Noordhuis |
Add error code UV_EPIPE. |
b328e4cb | 10-Aug-2011 |
Ben Noordhuis |
uv-unix: fd 0 is valid file descriptor uv__bind() and uv_tcp_listen() created a new socket if tcp->fd <= 0 but 0 is a valid file descriptor. The second bug was that the newly cr
uv-unix: fd 0 is valid file descriptor uv__bind() and uv_tcp_listen() created a new socket if tcp->fd <= 0 but 0 is a valid file descriptor. The second bug was that the newly created socket wasn't actually assigned to tcp->fd. Fixes failing node.js test: test/simple/test-regress-GH-746.js
show more ...
|
ee2027dd | 10-Aug-2011 |
Ryan Dahl |
fix preprocessor again |
b6b97f30 | 10-Aug-2011 |
Ben Noordhuis |
uv-unix: guard against self-close by connection_cb connection_cb may close the server socket inside the accept loop, handle it. Fixes failing node.js tests: test/simple/test-n
uv-unix: guard against self-close by connection_cb connection_cb may close the server socket inside the accept loop, handle it. Fixes failing node.js tests: test/simple/test-net-connect-buffer.js test/simple/test-net-create-connection.js
show more ...
|
afb18596 | 10-Aug-2011 |
Ben Noordhuis |
uv-unix: remove dead code |
06623d15 | 10-Aug-2011 |
Ryan Dahl |
More preprocessor fixes... |
dac30a15 | 10-Aug-2011 |
Ryan Dahl |
More preprocessor fixes |
5dc8037f | 10-Aug-2011 |
Ryan Dahl |
Fix mingw build by using preprocessor correctly. |
db190c7b | 10-Aug-2011 |
Ryan Dahl |
unix: uv_pipe_connect should call uv__stream_open |
b8fe56d8 | 10-Aug-2011 |
Ryan Dahl |
Remove unnecessary casts |
9a127af7 | 10-Aug-2011 |
Bert Belder |
Add header files to gyp script This makes generated project files more convenient to work with. |
71396f6a | 10-Aug-2011 |
Bert Belder |
Polish create-msvs-files script |
d3cc9a39 | 10-Aug-2011 |
Bert Belder |
Move gyp files to root |
4b1b8fae | 09-Aug-2011 |
Robert Mustacchi |
Clean up SunOS build |
54a6c6fe | 09-Aug-2011 |
Peter Bright |
Ignore VC++ files. |
3409c9b3 | 09-Aug-2011 |
Peter Bright |
Include important Windows environmental variables even when a blank/custom environment is specified. |
4abd1e0c | 05-Aug-2011 |
Ben Noordhuis |
uv-unix: close file descriptors immediately in uv_close() Don't defer closing of socket and pipe file descriptors to the next iteration of the event loop. It breaks node.js unit tests
uv-unix: close file descriptors immediately in uv_close() Don't defer closing of socket and pipe file descriptors to the next iteration of the event loop. It breaks node.js unit tests that assume the call to `server.close()` immediately frees up the bound to address.
show more ...
|
0c815cfe | 09-Aug-2011 |
Ben Noordhuis |
eio: define HAVE_UTIMES 1 on cygwin, fixes build |
0266c0ec | 09-Aug-2011 |
Ryan Dahl |
Change for MinGW on Win 2k3 |
e5f513cf | 09-Aug-2011 |
Ryan Dahl |
Remove desired-api.md |
3f8bbb8c | 09-Aug-2011 |
Ben Noordhuis |
bench: create separate arrays for TCP and pipe streams Size and alignment of tcp_conn_rec and pipe_conn_rec may differ so it's not safe to reuse a single array of conn_rec elements. |