PHP 8.2.30
Preview: signal-manager.js Size: 1.03 KB
/opt/alt/alt-nodejs20/root/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/signal-manager.js

const runningProcs = new Set()
let handlersInstalled = false

const forwardedSignals = [
  'SIGINT',
  'SIGTERM',
]

// no-op, this is so receiving the signal doesn't cause us to exit immediately
// instead, we exit after all children have exited when we re-send the signal
// to ourselves. see the catch handler at the bottom of run-script-pkg.js
const handleSignal = signal => {
  for (const proc of runningProcs) {
    proc.kill(signal)
  }
}

const setupListeners = () => {
  for (const signal of forwardedSignals) {
    process.on(signal, handleSignal)
  }
  handlersInstalled = true
}

const cleanupListeners = () => {
  if (runningProcs.size === 0) {
    for (const signal of forwardedSignals) {
      process.removeListener(signal, handleSignal)
    }
    handlersInstalled = false
  }
}

const add = proc => {
  runningProcs.add(proc)
  if (!handlersInstalled) {
    setupListeners()
  }

  proc.once('exit', () => {
    runningProcs.delete(proc)
    cleanupListeners()
  })
}

module.exports = {
  add,
  handleSignal,
  forwardedSignals,
}

Directory Contents

Dirs: 1 × Files: 8

Name Size Perms Modified Actions
- drwxr-xr-x 2026-03-14 07:02:08
Edit Download
245 B lrw-r--r-- 2026-02-23 03:24:42
Edit Download
815 B lrw-r--r-- 2026-02-23 03:24:42
Edit Download
826 B lrw-r--r-- 2026-02-23 03:24:42
Edit Download
2.88 KB lrw-r--r-- 2026-02-23 03:24:42
Edit Download
520 B lrw-r--r-- 2026-02-23 03:24:42
Edit Download
1.47 KB lrw-r--r-- 2026-02-23 03:24:42
Edit Download
1.03 KB lrw-r--r-- 2026-02-23 03:24:42
Edit Download
1.18 KB lrw-r--r-- 2026-02-23 03:24:42
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).