From 6bd0bcd5af1384378650bb74b7831776fefc16bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Ma=C5=82ecki?= Date: Wed, 2 Nov 2011 17:52:47 +0100 Subject: [PATCH] child_process: in a new `ChildProcess` set `killed` to false This behavior is consistent with what v0.4 does. --- lib/child_process.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/child_process.js b/lib/child_process.js index 48120866060..bb80ac11d9a 100644 --- a/lib/child_process.js +++ b/lib/child_process.js @@ -369,6 +369,7 @@ function ChildProcess() { this.signalCode = null; this.exitCode = null; + this.killed = false; this._internal = new Process(); this._internal.onexit = function(exitCode, signalCode) {