Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
child_process: in a new ChildProcess set killed to false
Browse files Browse the repository at this point in the history
This behavior is consistent with what v0.4 does.
  • Loading branch information
mmalecki authored and bnoordhuis committed Nov 2, 2011
1 parent 60818b9 commit 6bd0bcd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/child_process.js
Expand Up @@ -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) {
Expand Down

0 comments on commit 6bd0bcd

Please sign in to comment.