Browse Source

Start on frame zero - don't do extra break

v0.7.4-release
Ryan Dahl 14 years ago
parent
commit
0adc6b29bd
  1. 2
      lib/_debugger.js
  2. 2
      src/node.cc

2
lib/_debugger.js

@ -119,7 +119,7 @@ function Client() {
this._reqCallbacks = [];
var socket = this;
this.currentFrame = NO_FRAME;
this.currentFrame = 0;
this.currentSourceLine = -1;
// Note that 'Protocol' requires strings instead of Buffers.

2
src/node.cc

@ -1960,7 +1960,7 @@ static void HandleDebugEvent(DebugEvent event,
// TODO probably need to waitpid here or something to avoid zombies.
// int status;
// waitpid(pid, &status, 0);
Debug::DebugBreak();
//Debug::DebugBreak();
}

Loading…
Cancel
Save