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

Function cbm_win_begin_termination

src/foundation/subprocess.c:787–796  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

cbm_subprocess_poll_winFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected