Skip to content

Instantly share code, notes, and snippets.

@cjihrig

cjihrig/ipc.js Secret

Created November 4, 2014 02:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjihrig/c71956d038ddb2cad7d4 to your computer and use it in GitHub Desktop.
Save cjihrig/c71956d038ddb2cad7d4 to your computer and use it in GitHub Desktop.
ipc bug
if (process.argv[2] === 'child') {
process.stdin;
} else {
var cp = require('child_process');
var child = cp.spawn('node', [__filename, 'child'], {
stdio: ['ipc', 'inherit', 'inherit']
});
}
Assertion failed: (loop->watchers[w->fd] == w), function uv__io_stop, file ../deps/uv/src/unix/core.c, line 769.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment