(...pids: number[])
| 16 | const dead = () => false; |
| 17 | /** Alive for everyone except the listed pids. */ |
| 18 | const deadOnly = (...pids: number[]) => (pid: number) => !pids.includes(pid); |
| 19 | |
| 20 | describe('supervisionLostReason', () => { |
| 21 | describe('POSIX (parent death reparents → ppid changes)', () => { |