2013-09-05 01:21:39 +00:00
|
|
|
process.on('uncaughtException', function(error) {
|
|
|
|
process.send(error.stack);
|
|
|
|
});
|
|
|
|
|
|
|
|
var child = require('child_process').fork(__dirname + '/ping.js');
|
|
|
|
process.on('message', function(msg) {
|
|
|
|
child.send(msg);
|
|
|
|
});
|
|
|
|
child.on('message', function (msg) {
|
|
|
|
process.send(msg);
|
|
|
|
});
|
2013-09-09 01:53:08 +00:00
|
|
|
child.on('exit', function(code) {
|
|
|
|
process.exit(code);
|
|
|
|
});
|