Register a PIO subprocess for tracking and cleanup on exit. Args: proc: subprocess.Popen instance to track
(proc: subprocess.Popen[Any])
| 241 | |
| 242 | |
| 243 | def register_pio_process(proc: subprocess.Popen[Any]) -> None: |
| 244 | """Register a PIO subprocess for tracking and cleanup on exit. |
| 245 | |
| 246 | Args: |
| 247 | proc: subprocess.Popen instance to track |
| 248 | """ |
| 249 | _registry.register(proc) |
| 250 | |
| 251 | |
| 252 | def unregister_pio_process(proc: subprocess.Popen[Any]) -> None: |
no test coverage detected