| Current Path : /hdd/hdd12/install/nodejs/node-13.6.0/test/fixtures/ |
| Current File : //hdd/hdd12/install/nodejs/node-13.6.0/test/fixtures/cluster-preload-test.js |
const cluster = require('cluster');
if (cluster.isMaster) {
cluster.fork(); // one child
cluster.on('exit', function(worker, code, signal) {
console.log(`worker terminated with code ${code}`);
});
}