| 269 | } |
| 270 | |
| 271 | static bool make_tree_pid_path(char path[64]) { |
| 272 | strcpy(path, "/tmp/cbm-subprocess-tree-XXXXXX"); |
| 273 | int fd = cbm_mkstemp(path); |
| 274 | if (fd < 0) { |
| 275 | return false; |
| 276 | } |
| 277 | (void)close(fd); |
| 278 | return unlink(path) == 0; /* child creates it only after both traps are installed */ |
| 279 | } |
| 280 | |
| 281 | static bool wait_for_tree_pids(const char *path, cbm_subprocess_t *process, pid_t *parent_pid, |
| 282 | pid_t *grandchild_pid, int timeout_ms) { |
no test coverage detected