Browse Source

child_process: in a new `ChildProcess` set `killed` to false

This behavior is consistent with what v0.4 does.
v0.7.4-release
Maciej Małecki 14 years ago
committed by Ben Noordhuis
parent
commit
6bd0bcd5af
  1. 1
      lib/child_process.js

1
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) {

Loading…
Cancel
Save