Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/KentBeck/BPlusTree3
/ cache_aligned_free
Function
cache_aligned_free
python/bplustree_c_src/node_ops.c:360–366 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
358
}
359
360
void cache_aligned_free(void* ptr) {
361
#ifdef _WIN32
362
_aligned_free(ptr);
363
#else
364
free(ptr);
365
#endif
366
}
Callers
1
node_destroy
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected