aecd296b | 29-Jan-2014 |
Timothy J Fontaine |
2014.01.30, Version 0.10.24 (Stable) Changes since version 0.10.23: * linux: move sscanf() out of the assert() (Trevor Norris) * linux: fix C99/C++ comment (Fedor Indutny) |
923e4ec6 | 29-Jan-2014 |
Fedor Indutny |
Merge branch 'v0.10' Conflicts: ChangeLog src/unix/linux-core.c src/version.c
|
3e2446d1 | 29-Jan-2014 |
Fedor Indutny |
linux: fix C99/C++ comment |
7c8ff3bc | 22-Jan-2014 |
Trevor Norris |
linux: move sscanf() out of the assert() If asserts are turned off then the sscanf() wouldn't have run, being placed directly in the assert() itself. |
666aa2f0 | 22-Jan-2014 |
Bert Belder |
Now working on v0.11.19 |
d47962e9 | 22-Jan-2014 |
Bert Belder |
2014.01.23, Version 0.11.18 (Unstable) Changes since version 0.11.17: * osx: Fix a possible segfault in uv__io_poll (Alex Crichton) * windows: improved handling of invalid
2014.01.23, Version 0.11.18 (Unstable) Changes since version 0.11.17: * osx: Fix a possible segfault in uv__io_poll (Alex Crichton) * windows: improved handling of invalid FDs (Alexis Campailla) * doc: adding ARCHS flag to OS X build command (Nathan Sweet) * tcp: reveal bind-time errors before listen (Alexis Campailla) * tcp: uv_tcp_dualstack() (Fedor Indutny) * linux: relax assumption on /proc/stat parsing (Luca Bruno) * openbsd: fix obvious bug in uv_cpu_info (Fedor Indutny) * process: close stdio after dup2'ing it (Fedor Indutny) * linux: move sscanf() out of the assert() (Trevor Norris)
show more ...
|
278b58df | 22-Jan-2014 |
Bert Belder |
Merge tag 'v0.10.23' Conflicts: AUTHORS src/version.c
|
a568ed62 | 22-Jan-2014 |
Bert Belder |
authors: add two addresses to .mailmap, fix their name in AUTHORS |
74b29000 | 22-Jan-2014 |
Trevor Norris |
linux: move sscanf() out of the assert() If asserts are turned off then the sscanf() wouldn't have run, being placed directly in the assert() itself. |
37e12bda | 22-Jan-2014 |
Fedor Indutny |
Revert "linux: silence uninitialized variable warning" This reverts commit 5008f8de08019af46ee844489ee9eeb18e5c7dd7. |
5008f8de | 22-Jan-2014 |
Trevor Norris |
linux: silence uninitialized variable warning When building using gyp and BUILDTYPE=Release using clang 3.4 received this warning: ../src/unix/linux-core.c:640:34: warning: vari
linux: silence uninitialized variable warning When building using gyp and BUILDTYPE=Release using clang 3.4 received this warning: ../src/unix/linux-core.c:640:34: warning: variable 'n' is uninitialized for (len = sizeof("cpu0"); n /= 10; len++); ^ Initializing n = 0 silences this build warning.
show more ...
|
b8b6588d | 22-Jan-2014 |
Bert Belder |
Now working on v0.10.24 |
dbd218e6 | 22-Jan-2014 |
Bert Belder |
2014.01.23, Version 0.10.23 (Stable) Changes since version 0.10.22: * linux: relax assumption on /proc/stat parsing (Luca Bruno) * openbsd: fix obvious bug in uv_cpu_info (
2014.01.23, Version 0.10.23 (Stable) Changes since version 0.10.22: * linux: relax assumption on /proc/stat parsing (Luca Bruno) * openbsd: fix obvious bug in uv_cpu_info (Fedor Indutny) * process: close stdio after dup2'ing it (Fedor Indutny)
show more ...
|
3a4ec61d | 22-Jan-2014 |
Fedor Indutny |
test: fix after merge |
53effc3d | 22-Jan-2014 |
Bert Belder |
Merge branch 'v0.10' Conflicts: ChangeLog src/unix/process.c src/version.c
|
e403a2c4 | 20-Jan-2014 |
Fedor Indutny |
process: close stdio after dup2'ing it Thus allow passing the same file descriptor as the source of multiple stdios. Committed with the help and code parts from: * Sa
process: close stdio after dup2'ing it Thus allow passing the same file descriptor as the source of multiple stdios. Committed with the help and code parts from: * Sam Roberts <sam@strongloop.com> fix #1074
show more ...
|
8bc29b6f | 21-Jan-2014 |
Fedor Indutny |
openbsd: fix obvious bug in uv_cpu_info `int which[]` should not be static here, as the function itself is changing it fix joyent/node#6878 |
993151bc | 20-Jan-2014 |
Luca Bruno |
linux: relax assumption on /proc/stat parsing CPU entries in /proc/stat are not guaranteed to be monotonically increasing, asserting on this assumption can break in cases such as the
linux: relax assumption on /proc/stat parsing CPU entries in /proc/stat are not guaranteed to be monotonically increasing, asserting on this assumption can break in cases such as the UltraSparc II machine shown in #1080. Signed-off-by: Luca Bruno <lucab@debian.org>
show more ...
|
8f15aae5 | 19-Mar-2013 |
Fedor Indutny |
tcp: uv_tcp_dualstack() Explicitly disable/enable dualstack depending on presence of flag set by uv_tcp_dualstack() function. |
d1e6be14 | 16-Jan-2014 |
Alexis Campailla |
tcp: reveal bind-time errors before listen Changed uv_tcp_duplicate_socket to reveal any bind-time errors before calling listen(). This fix is 100% windows specific. It
tcp: reveal bind-time errors before listen Changed uv_tcp_duplicate_socket to reveal any bind-time errors before calling listen(). This fix is 100% windows specific. It helps fix Node.js unite test test-cluster-bind-twice on Windows.
show more ...
|
acb9f895 | 13-Jan-2014 |
Nathan Sweet |
doc: adding ARCHS flag to OS X build command Adding further instructions about building for OS X, as recent versions of xcodebuild will automatically build for i386 (can someone say,
doc: adding ARCHS flag to OS X build command Adding further instructions about building for OS X, as recent versions of xcodebuild will automatically build for i386 (can someone say, "monoculture") even on x86_64 machines! Specifically including instructions about including the "ARCHS" flag to specify the right architecture. This is trivial, but will save people time.
show more ...
|
c0716b3d | 17-Dec-2013 |
Alexis Campailla |
windows: improved handling of invalid FDs If passed and invalid FD, _get_osfhandle() sets an error code through errno, not _doserrno. Hence we need to use SET_REQ_WIN32_ERROR insted
windows: improved handling of invalid FDs If passed and invalid FD, _get_osfhandle() sets an error code through errno, not _doserrno. Hence we need to use SET_REQ_WIN32_ERROR insted of SET_REQ_RESULT. In debug builds, _get_osfhandle() also raises a superfluous assert. I implemented a wrapper that disables all asserts around the call to _get_osfhandle(). This fixes node.js unit tests test-fs-read-stream.js and test-listen-fd-ebadf.js.
show more ...
|
97eda7fd | 07-Jan-2014 |
Timothy J Fontaine |
Now working on v0.10.23 |
f526c90e | 07-Jan-2014 |
Timothy J Fontaine |
2014.01.08, Version 0.10.22 (Stable) Changes since version 0.10.21: * windows: avoid assertion failure when pipe server is closed (Bert Belder) |
4ce9c39d | 31-Dec-2013 |
Timothy J Fontaine |
Now working on v0.11.18 |