MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / cbm_posix_group_active

Function cbm_posix_group_active

src/foundation/subprocess.c:1115–1120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1113}
1114
1115static bool cbm_posix_group_active(cbm_subprocess_t *process) {
1116 if (kill(-process->pgid, 0) == 0) {
1117 return true;
1118 }
1119 return errno != ESRCH; /* EPERM/other errors fail closed as still active */
1120}
1121
1122static void cbm_posix_begin_termination(cbm_subprocess_t *process, uint64_t now) {
1123 if (process->termination_started) {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected