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

Function application_worker_destroy_default

src/daemon/application.c:332–336  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

330}
331
332static void application_worker_destroy_default(void *context,
333 cbm_daemon_application_worker_t worker) {
334 (void)context;
335 cbm_index_worker_destroy((cbm_index_worker_handle_t *)worker);
336}
337
338static uint32_t application_get_u32(const uint8_t *bytes) {
339 return ((uint32_t)bytes[0] << 24) | ((uint32_t)bytes[1] << 16) | ((uint32_t)bytes[2] << 8) |

Callers

nothing calls this directly

Calls 1

cbm_index_worker_destroyFunction · 0.85

Tested by

no test coverage detected