Closed
Description
In both io.js
and node.js >= 0.12
have this issue.
OS:
osx & ubuntu 14
Reproduce steps:
- Create a file:
a.js
console.log('debug');
- run
node debug a.js
- press
c
tocontinue
Then the stdout should have:
> debug
> program terminated
But currently, it only have
> debug
- When I try to press
c
tocontinue
and make the process close, but it just stuck there waiting for v8 response.
It happen when I write my own debugger. It seems that the debug server should knows that the process is terminated, but it didn't.