Browse Source

child_process: hook up handle wrap to owning object

v0.9.1-release
Ben Noordhuis 13 years ago
parent
commit
a3908f47f1
  1. 2
      lib/child_process.js

2
lib/child_process.js

@ -628,6 +628,8 @@ function ChildProcess() {
this.killed = false; this.killed = false;
this._handle = new Process(); this._handle = new Process();
this._handle.owner = this;
this._handle.onexit = function(exitCode, signalCode) { this._handle.onexit = function(exitCode, signalCode) {
// //
// follow 0.4.x behaviour: // follow 0.4.x behaviour:

Loading…
Cancel
Save