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

Function application_job_free

src/daemon/application.c:521–530  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

519}
520
521static void application_job_free(cbm_daemon_application_job_t *job) {
522 if (!job) {
523 return;
524 }
525 free(job->project_key);
526 free(job->root_path);
527 free(job->args_json);
528 free(job->response);
529 free(job);
530}
531
532/* Reap completed job threads only after every logical demand subscription and
533 * watcher callback storage waiter has released the job. Exactly one caller

Calls

no outgoing calls

Tested by

no test coverage detected