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

Function cbm_win_begin_termination

src/foundation/subprocess.c:788–797  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

786}
787
788static void cbm_win_begin_termination(cbm_subprocess_t *process, uint64_t now) {
789 if (process->termination_started) {
790 return;
791 }
792 process->termination_started = true;
793 process->termination_started_ms = now;
794 /* Best effort only: services and detached parents may have no shared console.
795 * The Job Object remains the authoritative force-containment boundary. */
796 (void)GenerateConsoleCtrlEvent(CTRL_BREAK_EVENT, process->process_id);
797}
798
799static void cbm_win_force_tree(cbm_subprocess_t *process, uint64_t now) {
800 if (process->force_sent) {

Callers 1

cbm_subprocess_poll_winFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected