blob: 43d3887b0daf01a3a8b33bfbf3fb8004169dbd55 [file] [log] [blame]
var cluster = require('cluster');
if (cluster.isMaster) {
cluster.fork(); // one child
cluster.on('exit', function(worker, code, signal) {
console.log('worker terminated with code ' + code);
});
}