This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Description
This currently exists on master, but my understanding is that it is an issue on other versions:
if (process.argv[2] === 'child') {
process.stdin;
} else {
var cp = require('child_process');
var child = cp.spawn('node', [__filename, 'child'], {
stdio: ['ipc', 'inherit', 'inherit']
});
}
Yields the following error:
Assertion failed: (loop->watchers[w->fd] == w), function uv__io_stop, file ../deps/uv/src/unix/core.c, line 769.
The error comes from libuv, with the last call from node being this line.