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

Function cbm_aligned_alloc

src/foundation/compat_thread.c:147–150  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

145#ifdef _WIN32
146
147int cbm_aligned_alloc(void **ptr, size_t alignment, size_t size) {
148 *ptr = _aligned_malloc(size, alignment);
149 return *ptr ? 0 : -1;
150}
151
152void cbm_aligned_free(void *ptr) {
153 _aligned_free(ptr);

Callers 3

slab_growFunction · 0.85
cbm_parallel_extract_exFunction · 0.85
cbm_parallel_resolveFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected