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

Function cbm_mutex_init

src/foundation/compat_thread.c:107–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

105#ifdef _WIN32
106
107void cbm_mutex_init(cbm_mutex_t *m) {
108 InitializeCriticalSection(&m->cs);
109}
110
111void cbm_mutex_lock(cbm_mutex_t *m) {
112 EnterCriticalSection(&m->cs);

Callers 4

ensure_pretrained_mapFunction · 0.85
cbm_watcher_newFunction · 0.85
cbm_ui_log_initFunction · 0.85
cbm_parallel_resolveFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected