11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst common = require('../common'); 41cb0ef41Sopenharmony_ciconst cluster = require('cluster'); 51cb0ef41Sopenharmony_ciconst net = require('net'); 61cb0ef41Sopenharmony_ciconst assert = require('assert'); 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_cicluster.schedulingPolicy = cluster.SCHED_RR; 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_ciif (cluster.isPrimary) { 111cb0ef41Sopenharmony_ci let exited = false; 121cb0ef41Sopenharmony_ci const worker = cluster.fork(); 131cb0ef41Sopenharmony_ci worker.on('exit', () => { 141cb0ef41Sopenharmony_ci exited = true; 151cb0ef41Sopenharmony_ci }); 161cb0ef41Sopenharmony_ci setTimeout(() => { 171cb0ef41Sopenharmony_ci assert.ok(!exited); 181cb0ef41Sopenharmony_ci worker.kill(); 191cb0ef41Sopenharmony_ci }, 3000); 201cb0ef41Sopenharmony_ci} else { 211cb0ef41Sopenharmony_ci const server = net.createServer(common.mustNotCall()); 221cb0ef41Sopenharmony_ci server.listen(0, common.mustCall(() => process.channel.unref())); 231cb0ef41Sopenharmony_ci} 24