Ben Noordhuis
c8646e0c41
test: add ChildProcess.prototype.killed test case
13 years ago
Maciej Małecki
6bd0bcd5af
child_process: in a new `ChildProcess` set `killed` to false
This behavior is consistent with what v0.4 does.
13 years ago
Ryan Dahl
60818b957c
Add missing copyright headers
13 years ago
Ben Noordhuis
672b453a76
docs: http: fix docs for the 'close' event
13 years ago
Ben Noordhuis
edea4122b1
Revert "Upgrade V8 to 3.7.1"
This reverts commit 92f5a5d3ca
.
V8 3.7.1 in debug mode on ia32 has a curious race-like bug where an fs.Stats
object is not fully formed until some time after it's created. This is easy
to demonstrate by running `make test-debug`.
V8 3.7.0 does not exhibit this behaviour so back we go.
Fixes #1981 .
13 years ago
Igor Zinkovsky
cc92234068
fix pummel/test-net-throttle on windows
13 years ago
Maciej Małecki
fc61134b1a
doc: fix links
Changes:
* 'http://github.com ' => 'https://github.com '
* 'https://github.com/ry/node ' => 'https://github.com/joyent/node '
* 'https://github.com/ry/http-parser ' =>
'https://github.com/joyent/http-parser '
* old issue links
* wiki link
13 years ago
Igor Zinkovsky
3060266ff1
windows: enable pending accepts knob
13 years ago
Ben Noordhuis
21b64dc7c9
uv: upgrade to 90b0b7d
13 years ago
Ben Noordhuis
37bb37d151
os: rename getNetworkInterfaces() to networkInterfaces()
13 years ago
Maciej Małecki
b4afe605f4
node: remove `process.compile`
It was deprecated before v0.4.
13 years ago
Ben Noordhuis
362b5a6c40
process: fix process.nextTick() error case regression
Patch and test by Koichi Kobayashi.
13 years ago
koichik
f5a01d1764
test: fix test/message/undefined_reference_in_new_context.js
after 4d4900f
, stack trace was changed.
13 years ago
isaacs
06190928c0
doc: Correct blatantly wrong futimes documentation
13 years ago
Ben Noordhuis
4d4900fc65
process: optimize process.nextTick()
33% performance boost on large nextTick queues.
13 years ago
Ben Noordhuis
5fee1ff7bc
bench: add process.nextTick() benchmark
13 years ago
koichik
f53d092a2a
tls, https: add passphrase option
Fixes #1925 .
13 years ago
Ben Noordhuis
b6c582a3a3
docs: tty: remove tty.open() documentation
13 years ago
Ben Noordhuis
a1fa3efd2b
core: fix off-by-one error in node::DLOpen()
Fixes loading of modules that use the NODE_MODULE macro on POSIX platforms.
13 years ago
Ben Noordhuis
26874e2e07
docs: addons: fix example
13 years ago
koichik
8a729270c1
fix for --harmony_block_scoping
Fixes #1969 .
13 years ago
koichik
52c2988f16
docs: fix option's name of cluster.startMaster()
13 years ago
Ben Noordhuis
a7803c58e4
uv: upgrade to 70381ce
13 years ago
Siddharth Mahendraker
12cf730b69
events: separate maxListeners and _events
Fixes #1479 .
Fixes #1923 .
13 years ago
Igor Zinkovsky
6d7aa65399
fix pummel/test-child-process-spawn-loop.js on windows
13 years ago
Bert Belder
60efa608d6
Upgrade libuv to e4d6509211
13 years ago
Bert Belder
a56a95b652
Export some functions from node.h
13 years ago
Bert Belder
4a1efb2b9c
Support native extension loading on Windows
13 years ago
Bert Belder
dd93c53c4e
Make node::DLOpen use uv_dlopen
13 years ago
Bert Belder
2f22024806
Upgrade libuv to 90e15f1110
13 years ago
Bert Belder
c0c4bd4efa
Add common.gypi to gyp output
13 years ago
Bert Belder
889620dcd2
Wrap long lines, strip trailing whitespace
13 years ago
Bert Belder
1e2d777601
Remove outdated comment
13 years ago
Bert Belder
6a6a70e80e
Fix v8 build on Windows
There's probably a better way to fix this
13 years ago
Igor Zinkovsky
56315494dd
fix simple/test-child-process-double-pipe on windows
13 years ago
Igor Zinkovsky
f35a396c54
Revert "remove node_io_watcher"
This reverts commit cc2ac1ccc7
.
13 years ago
Ben Noordhuis
ccd8b55b01
linux: unbreak build if HAVE_MONOTONIC_CLOCK=0
13 years ago
Ben Noordhuis
004e6fbe1f
docs: addons: fix NODE_SET_METHOD example
13 years ago
Zachary Scott
e35ce7baa1
docs: tty: stdin must be initialized before calling setRawMode
13 years ago
Ben Noordhuis
1d94d4fa70
docs: fix home page link to API docs
13 years ago
Ben Noordhuis
3dee0e4cd8
zlib: compile without -ansi
Source contains C++ / C99 comments, gcc in strict mode doesn't like that.
13 years ago
Igor Zinkovsky
cc2ac1ccc7
remove node_io_watcher
13 years ago
koichik
173f91c791
docs: add zlib.createXxx() functions
13 years ago
Ben Noordhuis
b9529545e1
v8: implement VirtualMemory class on SunOS
Unbreaks build on SunOS. Re-applies 4908e5bf7a
.
13 years ago
Ryan Dahl
92f5a5d3ca
Upgrade V8 to 3.7.1
13 years ago
Tj Holowaychuk
528c28587f
cluster: Add some docs, improve cluster.isWorker()
Fixes #1949 .
13 years ago
Ryan Dahl
c5d54010bc
node cluster is now a module instead of CLI interface
This is to make room for master process plugins instead of adding CLI
options as proposed in #1879 .
13 years ago
Nathan Rajlich
4fb2ac5be1
Add test cases for #1944 .
13 years ago
Nathan Rajlich
ebefe77bc0
More bulletproof `util.inspect()` function.
Use the *real* versions of the Date and RegExp functions, from the
prototype. This defends against code like:
var d = new Date()
d.toUTCString = null
util.inspect(d)
// TypeError: toUTCString is not a function
Fixes #1944 .
13 years ago
Nathan Rajlich
d4379fcee3
Add test case for #1941 .
Add test for the false-positives from #1942 .
Fix test-sys.js.
13 years ago