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

Function cbm_aligned_alloc

src/foundation/compat_thread.c:242–245  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

240#ifdef _WIN32
241
242int cbm_aligned_alloc(void **ptr, size_t alignment, size_t size) {
243 *ptr = _aligned_malloc(size, alignment);
244 return *ptr ? 0 : -1;
245}
246
247void cbm_aligned_free(void *ptr) {
248 _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