()
| 703 | |
| 704 | function registerChildTreeShutdown(child: StudioChildProcess): void { |
| 705 | const shutdown = (): void => { |
| 706 | if (child.pid) killProcessTree(child.pid); |
| 707 | }; |
| 708 | process.once("SIGINT", shutdown); |
| 709 | process.once("SIGTERM", shutdown); |
| 710 | } |
nothing calls this directly
no test coverage detected