c1bddb96 | 15-Jul-2011 |
Bert Belder |
Stop g++ from complaining about anonymous struct usage |
d56af313 | 15-Jul-2011 |
Bert Belder |
Revert "uv_win: uv_pipe_connect should return -1 on error" This reverts commit 7b4607348a58013e0dd4dfb70d2347b0269ce178. |
1be48f12 | 15-Jul-2011 |
Shigeki Ohtsu |
ev: define HAVE_SYNC_FILE_RANGE if kernel >= 2.6.17 *and* glibc version >= 2.6 |
d5408721 | 15-Jul-2011 |
Henry Rawas |
uv-win: allow listen on unbound tcp handle |
7b460734 | 15-Jul-2011 |
Bert Belder |
uv_win: uv_pipe_connect should return -1 on error |
902dd567 | 14-Jul-2011 |
Bert Belder |
Benchmarks use the improved request api |
2f83928b | 14-Jul-2011 |
Bert Belder |
Define union uv_any_req |
0ea4c87f | 14-Jul-2011 |
Bert Belder |
Windows implementation of new request API This changes uv-win to use the new uv_req subclasses. It gets rid of the uv_req.flags field. There used to be only request flag (UV_REQ
Windows implementation of new request API This changes uv-win to use the new uv_req subclasses. It gets rid of the uv_req.flags field. There used to be only request flag (UV_REQ_PENDING), and it was mostly obsolete; it only had a real purpose for internal uv_read requests. Now we'll use the UV_HANDLE_READ_PENDING flag on the handle instead. This patch also simplifies the accept logic for named pipes on windows. We no longer have a separate struct to store information about established connections. Instead we just carry over the windows HANDLE from the accept request to the client handle in uv_pipe_accept().
show more ...
|
abe0b1ea | 13-Jul-2011 |
Ryan Dahl |
Better request API Instead of uv_shutdown, uv_write, uv_connect taking raw uv_req_t we subclass uv_req_t into uv_shutdown_t, uv_write_t, and uv_connect_t. uv_req_init is removed. |
Revision tags: node-v0.5.1 |
|
f5ff8694 | 13-Jul-2011 |
Igor Zinkovsky |
allocate windows pipe handles on demand |
9aff1102 | 14-Jul-2011 |
Ben Noordhuis |
runner: bring back benchmark output |
86341f8e | 14-Jul-2011 |
Ben Noordhuis |
Makefile: disable test-% and bench-% targets Targets bench-% and test-% mess up dependency resolution, disable for now. |
4c2d0545 | 14-Jul-2011 |
Bert Belder |
Whitespace fixes |
4a6efee4 | 14-Jul-2011 |
Bert Belder |
uv-win: get rid of unused variables |
a29b2099 | 13-Jul-2011 |
Ben Noordhuis |
Make it possible to run individual tests. Fixes #100. |
f142a4b6 | 13-Jul-2011 |
Ben Noordhuis |
uv-linux: remove unused variables |
b50105e4 | 13-Jul-2011 |
Ben Noordhuis |
uv-unix: remove unused variable |
932f0ad1 | 13-Jul-2011 |
Ben Noordhuis |
uv-linux: fix warning: implicit declaration of function ‘readlink’ |
f560f75a | 13-Jul-2011 |
Ben Noordhuis |
uv-unix: fix warning: control reaches end of non-void function |
e364dd15 | 13-Jul-2011 |
Ben Noordhuis |
uv-unix: fix warning: no return statement in function returning non-void |
aad95b84 | 13-Jul-2011 |
Ben Noordhuis |
uv-unix: increment check_init counter in uv_check_init() |
28650425 | 13-Jul-2011 |
Bert Belder |
uv-win: refactor request processing |
9c193915 | 13-Jul-2011 |
Ben Noordhuis |
test-ping-pong: cast callback to expected prototype. |
afc96b58 | 13-Jul-2011 |
Ben Noordhuis |
test-delayed-accept.c: fix type mismatch in comparison. |
1a53b898 | 13-Jul-2011 |
Ben Noordhuis |
test-hrtime: fix printf() compiler warning. |