-
Notifications
You must be signed in to change notification settings - Fork 210
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
upon killing the process: FATAL ERROR: v8::HandleScope::CreateHandle() Cannot create a handle without a HandleScope #126
Comments
Or, perhaps, what would be the proper way to shutdown the forked process without causing troubles ? |
Actually this happens not only on process kill, but also on a valid exit, such as |
This looks like a difference in v8 API between io.js 2.5.0 and node.js 0.12.x. io.js uses v8 4.2 node uses v8 3.28. It looks like this has something to do with pty_after_waitpid not creating a NanScope() to execute the callback: https://github.com/chjj/pty.js/blob/master/src/unix/pty.cc#L449 I don't normally use io.js, but I just tested this change on 2.5.0 and it seems to fix it. |
Wow, you are awesome ;) Thanks for such a prompt reply and fix. It works indeed. |
* add support for .on('exit', function (code, signal) {}) * use an arg instead of arguments[0] * htop command cannot resize with env.LINSE and env.COLUMNS * v0.2.8. fixes chjj#122. * style conventions. * fix build. see chjj#110. * call uv_close to take cb off the event loop. see chjj#110. * more style fixes. * use older v8 api for function casts? * fix after_wait_on_pid for node v0.10.x. see chjj#110. * fix close events. see chjj#110. * v0.2.9 * refactor waitpid thread. * refactor pty.fork args. * free up baton in uv_close callback. see chjj#110. * fix issue where exit is emitted before the last data event. see chjj#110. * account for node v0.8.x on waitpid. see chjj#110. * v0.2.10 * add comment. * v0.2.11 * better onexit callback. * event better onexit callback. see chjj#110. * v0.2.12 * create scope in pty_after_waitpid to prevent fatal v8 error in io.js. fixes chjj#126. * v0.2.13 * upgrade to nan 2.0.5. see chjj#127. * remove "heap-style" Nan::Callback. * strict nan version. * remove useless v8 namespace prefixes. * minor: whitespace. cols. * bind to close only once. * v0.3.0 * update win/pty.cc to work with nan 2.0.5 * Optional resuming of the socket The immediate resumption the a socket means that output can be lost unless you start consuming it right away. In some cases, this behavior is undesirable. Adding an option to not automatically resume the socket enables data to be read after a delay. * Update nan version
* add support for .on('exit', function (code, signal) {}) * use an arg instead of arguments[0] * htop command cannot resize with env.LINSE and env.COLUMNS * v0.2.8. fixes chjj#122. * style conventions. * fix build. see chjj#110. * call uv_close to take cb off the event loop. see chjj#110. * more style fixes. * use older v8 api for function casts? * fix after_wait_on_pid for node v0.10.x. see chjj#110. * fix close events. see chjj#110. * v0.2.9 * refactor waitpid thread. * refactor pty.fork args. * free up baton in uv_close callback. see chjj#110. * fix issue where exit is emitted before the last data event. see chjj#110. * account for node v0.8.x on waitpid. see chjj#110. * v0.2.10 * add comment. * v0.2.11 * better onexit callback. * event better onexit callback. see chjj#110. * v0.2.12 * create scope in pty_after_waitpid to prevent fatal v8 error in io.js. fixes chjj#126. * v0.2.13 * upgrade to nan 2.0.5. see chjj#127. * remove "heap-style" Nan::Callback. * strict nan version. * remove useless v8 namespace prefixes. * minor: whitespace. cols. * bind to close only once. * v0.3.0 * update win/pty.cc to work with nan 2.0.5 * Optional resuming of the socket The immediate resumption the a socket means that output can be lost unless you start consuming it right away. In some cases, this behavior is undesirable. Adding an option to not automatically resume the socket enables data to be read after a delay. * update dependency [email protected] to [email protected] * update nan to @2.3.5 * v0.3.1 * pty.kill is not a function see https://codio.myjetbrains.com/youtrack/issue/codio-9306 * add comment
If the spawned process dies for any reason, node irrecoverably crashes with
Script to reproduce:
Expected outcome:
Additional info
iojs 2.5.0
The text was updated successfully, but these errors were encountered: