- Jan 20, 2014
-
-
isaacs authored
-
- Jan 17, 2014
-
-
Timothy J Fontaine authored
-
Fedor Indutny authored
fix #6679
-
Sam Roberts authored
-
- Jan 16, 2014
-
-
Sam Roberts authored
Spawn's arguments were documented to be optional, as they are for the other similar child_process APIs, but the code was missing. Result was `child_process.spawn('node', {})` errored when calling slice() on an Object, now it behaves as the documentation said it would. -
Sam Roberts authored
-
Sam Roberts authored
-
Ryan Graham authored
domain.create().exit() should not clear the domain stack if the domain instance does not exist within the stack. Signed-off-by:Trevor Norris <trev.norris@gmail.com>
-
isaacs authored
-
- Jan 14, 2014
-
-
Fedor Indutny authored
fix #6859
-
Fedor Indutny authored
-
Sam Roberts authored
spawn stdio options can be a 'stream', but the following code fails with "Incorrect value for stdio stream: [object Object]", despite being a stream. The problem is the test isn't really for a stream, its for an object with a numeric `.fd` property, and streams do not have an fd until their async 'open' event has occurred. This is reasonable, but was not documented. child_process.spawn('date', [], {stdio: [ 'ignore', fs.createWriteStream('out.txt',{flags:'a'}), 'ignore']}) -
Alexis Campailla authored
Killing the debuggee without first closing the socket can result in an ECONNRESET error.
-
- Jan 13, 2014
-
-
Timothy J Fontaine authored
If node was compiled with --no-ifaddrs to support older operating systems, don't throw instead simply return an empty object Fixes #6846
-
- Jan 11, 2014
-
-
svenpanne@chromium.org authored
Keep the number of descriptors below DescriptorArray::kMaxNumberOfDescriptors even for accessors Review URL: https://codereview.chromium.org/11362182
-
gluxon authored
-
- Jan 10, 2014
-
-
Timothy J Fontaine authored
We are in an unrecoverable state if v8 throws a FatalError, actually ask the operating system to dump core in this case. Fixes #6836
-
- Jan 09, 2014
-
-
Lorenz Leutgeb authored
-
- Jan 08, 2014
-
-
Timothy J Fontaine authored
-
- Jan 07, 2014
-
-
isaacs authored
-
- Jan 05, 2014
-
-
ayanamist authored
If a write is above the highWaterMark, _write still manages to fully send it synchronously, _writableState.length will be adjusted down to 0 synchronously with the write returning false, but 'drain' will not be emitted until process.nextTick. If another small write which is below highWaterMark is issued before process.nextTick happens, _writableState.needDrain will be reset to false, and the drain event will never be fired. So we should check needDrain before setting it up, which prevents it from inproperly resetting to false.
-
- Jan 01, 2014
-
-
Timothy J Fontaine authored
-
Maciej Małecki authored
Ref #2598
-
Timothy J Fontaine authored
-
Ron Korving authored
The fact that the "exit" event passes the exit code as an argument as omitted from the documentation. This adds the explanation and augments the example code to show that.
-
Timothy J Fontaine authored
-
Fedor Indutny authored
Some errors for listening and binding to a socket were not properly delivered to workers. fix #6767
-
- Dec 31, 2013
-
-
Fedor Indutny authored
-
Dav Glass authored
-
- Dec 28, 2013
-
-
Lev Gimelfarb authored
Search for VS2013 compiler 1st, before falling back to older ones. This allows compiling using the latest VS2013.
-
- Dec 26, 2013
-
-
isaacs authored
-
- Dec 21, 2013
-
-
T.C. Hollingsworth authored
node-gyp requires this file
-
- Dec 20, 2013
-
-
Timothy J Fontaine authored
-
Timothy J Fontaine authored
-
Timothy J Fontaine authored
-
- Dec 19, 2013
-
-
Timothy J Fontaine authored
* uv: Upgrade to v0.10.21 * npm: upgrade to 1.3.21 * v8: backport fix for CVE-2013-{6639|6640} * build: unix install node and dep library headers (Timothy J Fontaine) * cluster, v8: fix --logfile=%p.log (Ben Noordhuis) * module: only cache package main (Wyatt Preul) -
Timothy J Fontaine authored
-
Ben Noordhuis authored
The %p is replaced with the current PID. This used to work in node.js v0.9.7 but it seems to have been lost somewhere along the way. This commit makes the fix from 6b713b52 ("cluster: make --prof work for workers") work again. Without it, all log data ends up in a single file and is unusable because the addresses are all wrong.
-
Timothy J Fontaine authored
Restores functionality from v0.8 where module authors may not be relying on gyp for building their modules.
-
- Dec 18, 2013
-
-
isaacs authored
-