xref: /third_party/node/test/parallel/test-cluster-rr-handle-ref-unref.js
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/node/test/parallel/
11cb0ef41Sopenharmony_ci'use strict';
21cb0ef41Sopenharmony_ci
31cb0ef41Sopenharmony_ciconst common = require('../common');
41cb0ef41Sopenharmony_ciconst cluster = require('cluster');
51cb0ef41Sopenharmony_ciconst net = require('net');
61cb0ef41Sopenharmony_ci
71cb0ef41Sopenharmony_cicluster.schedulingPolicy = cluster.SCHED_RR;
81cb0ef41Sopenharmony_ci
91cb0ef41Sopenharmony_ciif (cluster.isPrimary) {
101cb0ef41Sopenharmony_ci  const worker = cluster.fork();
111cb0ef41Sopenharmony_ci  worker.on('exit', common.mustCall());
121cb0ef41Sopenharmony_ci} else {
131cb0ef41Sopenharmony_ci  const server = net.createServer(common.mustNotCall());
141cb0ef41Sopenharmony_ci  server.listen(0, common.mustCall(() => {
151cb0ef41Sopenharmony_ci    server.ref();
161cb0ef41Sopenharmony_ci    server.unref();
171cb0ef41Sopenharmony_ci    process.channel.unref();
181cb0ef41Sopenharmony_ci  }));
191cb0ef41Sopenharmony_ci  server.unref();
201cb0ef41Sopenharmony_ci}
21

Indexes created Thu Nov 07 10:32:03 CST 2024