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

Function application_job_thread_create

src/daemon/application.c:251–257  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

249}
250
251static int application_job_thread_create(cbm_thread_t *thread, void *context) {
252 if (atomic_exchange_explicit(&g_application_fail_next_job_thread_start_for_test, false,
253 memory_order_acq_rel)) {
254 return -1;
255 }
256 return cbm_thread_create(thread, APPLICATION_JOB_THREAD_STACK, application_job_thread, context);
257}
258
259static bool application_request_cancelled_locked(const cbm_daemon_application_session_t *session) {
260 return session &&

Callers 1

Calls 1

cbm_thread_createFunction · 0.85

Tested by

no test coverage detected