c42ba103 | 27-Apr-2012 |
Bert Belder |
Temporary API to support spawn with uid and gid options |
109dcb28 | 25-Apr-2012 |
Aaron Bieber |
build: make "make test" work on OpenBSD |
b6e3dcc7 | 25-Apr-2012 |
Luis Lavena |
Windows: actually detect mingw-w64 and not 64 bits mode __MINGW64__ is only defined when using mingw-w64 in 64bits mode, not when using the 32bits version of the compiler. Inste
Windows: actually detect mingw-w64 and not 64 bits mode __MINGW64__ is only defined when using mingw-w64 in 64bits mode, not when using the 32bits version of the compiler. Instead, to detect usage of mingw-w64 instead of mingw version of GCC we should look at __MINGW64_VERSION_MAJOR and __MINGW64_VERSION_MINOR. If one of these is defined means we are running on mingw-w64 compiler and headers and not mingw.org build. Read more here: http://bit.ly/detect-mingw-w64-vs-mingw Closes #384
show more ...
|
06ae804e | 24-Apr-2012 |
Ben Noordhuis |
linux: add IN_MOVE_SELF to inotify event mask Partially fixes joyent/node#3172, behavior is now consistent with inotifywait. |
42a86693 | 24-Apr-2012 |
Bert Belder |
Windows: set loop counters to zero in uv_loop_init |
1b6329dd | 24-Apr-2012 |
Bert Belder |
Style fixes |
Revision tags: node-v0.7.8, node-v0.6.15 |
|
5342bac4 | 30-Mar-2012 |
Bert Belder |
uv.h: make the ssize_t fallback more portable |
84d2f82a | 23-Apr-2012 |
Ben Noordhuis |
windows: rename local var errno to errorno Fixes compiler warning: ‘_errno’ redeclared without dllimport attribute: previous dllimport ignored. |
e6d4bca2 | 23-Apr-2012 |
Igor Zinkovsky |
remove left-over cast fixes #3160 |
1f001fe9 | 23-Apr-2012 |
Ben Noordhuis |
unix: remove kqueue cb == NULL check The other implementations don't check for it and it's making the counters_init test fail. |
21bee8c3 | 21-Apr-2012 |
Ben Noordhuis |
unix: call pipe handle connection cb on accept() error |
cf6dc082 | 21-Apr-2012 |
Ben Noordhuis |
unix: handle EWOULDBLOCK in uv__read() |
01cc4918 | 21-Apr-2012 |
Ben Noordhuis |
unix: handle EWOULDBLOCK in uv__write() |
df22d593 | 21-Apr-2012 |
Ben Noordhuis |
unix: handle EWOULDBLOCK in uv__server_io() |
73cc3677 | 21-Apr-2012 |
Ben Noordhuis |
unix: map EWOULDBLOCK to UV_EAGAIN |
1fa1c510 | 21-Apr-2012 |
Ben Noordhuis |
unix: call pipe handle connection cb on accept() error |
a55a3362 | 21-Apr-2012 |
Ben Noordhuis |
unix: handle EWOULDBLOCK in uv__read() |
4fd62648 | 21-Apr-2012 |
Ben Noordhuis |
unix: handle EWOULDBLOCK in uv__write() |
a8b52351 | 21-Apr-2012 |
Ben Noordhuis |
unix: handle EWOULDBLOCK in uv__server_io() |
a29892d9 | 21-Apr-2012 |
Ben Noordhuis |
unix: map EWOULDBLOCK to UV_EAGAIN |
f9fcaf5c | 20-Apr-2012 |
isaacs |
Map ENOMEM to UV_ENOMEM |
feafcdbf | 18-Apr-2012 |
Ben Noordhuis |
include: remove stray backslash |
ab3b307d | 18-Apr-2012 |
Ben Noordhuis |
unix: clean up uv__req_init() |
59531293 | 18-Apr-2012 |
Ben Noordhuis |
build: print error message when gyp is not installed |
d5acfd0c | 14-Apr-2012 |
Igor Zinkovsky |
64bit offsets for fs operations and cleanup uv_fs_* for uv-win |