122cd946 | 29-May-2012 |
Ben Noordhuis |
unix: remove unused flag UV__PENDING |
9d26f497 | 29-May-2012 |
Ben Noordhuis |
unix, windows: rename flags UV__ACTIVE, UV__REF Rename UV__ACTIVE and UV__REF to UV__HANDLE_ACTIVE and UV__HANDLE_REF to make it clear that they apply to handles, not requests or loops. |
58a272e5 | 29-May-2012 |
Ben Noordhuis |
unix: rework pending handle/req logic |
12ee388c | 29-May-2012 |
Ben Noordhuis |
test: clean up test-loop-handles.c |
ec0c7b89 | 29-May-2012 |
Ben Noordhuis |
test: fix double close in test-loop-handles.c |
75565907 | 28-May-2012 |
Bert Belder |
win/process.c: stdio fd should default to ignore |
18e622d4 | 28-May-2012 |
Ben Noordhuis |
unix: fix indentation in sunos.c |
81aff936 | 28-May-2012 |
Bert Belder |
win/process.c: remove unused function duplicate_std_handle |
46902046 | 28-May-2012 |
Ben Noordhuis |
unix: fix getaddrinfo bad pointer deref |
c0081f0e | 09-May-2012 |
Fedor Indutny |
unix: allow specifying FDs to be inherited by a child process Previously the only option was to create a pipe or an ipc channel. This patch makes it possible to inherit a handle that is
unix: allow specifying FDs to be inherited by a child process Previously the only option was to create a pipe or an ipc channel. This patch makes it possible to inherit a handle that is already open in the parent process. It also makes it possible to set more than just stdin, stdout and stderr.
show more ...
|
5a34f199 | 15-May-2012 |
Igor Zinkovsky |
windows: allow specifying FDs to be inherited by a child process Previously the only option was to create a pipe or an ipc channel. This patch makes it possible to inherit a handle that
windows: allow specifying FDs to be inherited by a child process Previously the only option was to create a pipe or an ipc channel. This patch makes it possible to inherit a handle that is already open in the parent process. There is also room for setting more than just stdin, stdout and stderr, although this is not supported yet.
show more ...
|
e4f23aac | 27-May-2012 |
Bert Belder |
Get rid of UV_LEAN_AND_MEAN |
2ec09862 | 27-May-2012 |
Ben Noordhuis |
unix, windows: set active flag on unref'd handles A logic bug in uv__handle_start() and uv__handle_stop() stopped the active flag from getting set (or unset) on unref'd handles. |
028fef84 | 26-May-2012 |
Ben Noordhuis |
unix: update timer if already active uv_timer_start() no longer returns an error when the timer is already active, now it just updates the timer. Consistent with the uv-win implementatio
unix: update timer if already active uv_timer_start() no longer returns an error when the timer is already active, now it just updates the timer. Consistent with the uv-win implementation. Fixes #425.
show more ...
|
ae9d4c2a | 25-May-2012 |
Ben Noordhuis |
test: add 'is active?' checks to test-timer.c |
34445d07 | 25-May-2012 |
Ben Noordhuis |
test: remove stale UNIX socket before running test Fixes spurious test and benchmark failures. |
28766dcf | 24-May-2012 |
Ben Noordhuis |
test: remove test-eio-overflow.c Unreliable, it's timing / system load sensitive. |
ce28e130 | 24-May-2012 |
Ben Noordhuis |
unix: remove unused __attribute__((unused)) |
604802ad | 24-May-2012 |
isaacs |
Fix sunos build: undeclared variable 'handle' |
793a52f5 | 24-May-2012 |
Ben Noordhuis |
unix: pack uv structs more Try to avoid alignment holes on x86_64. Shaves off 4-8 bytes from most structs. |
752ac30e | 24-May-2012 |
Ben Noordhuis |
unix: don't pass sockaddr to accept() Shaves a few nanoseconds off the accept() syscall. |
cff2221f | 23-May-2012 |
Ben Noordhuis |
unix: split up loop.c Move prepare/check/idle watcher code to loop-watcher.c so it can be reused for the linux backend. |
890d4435 | 23-May-2012 |
Ben Noordhuis |
unix: shave about 100 bytes off uv_udp_send_t |
e71495c8 | 23-May-2012 |
Ben Noordhuis |
unix: turn field stream->blocking into a flag Saves 4 bytes. |
5fd2c406 | 23-May-2012 |
Ben Noordhuis |
unix: fix up asserts in core.c and stream.c |