MCPcopy Create free account
hub / github.com/Amanieu/asyncplusplus / aligned_free

Function aligned_free

src/scheduler.cpp:47–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45}
46
47void aligned_free(void* addr) LIBASYNC_NOEXCEPT
48{
49#ifdef _WIN32
50 _aligned_free(addr);
51#else
52 free(addr);
53#endif
54}
55
56// Wait for a task to complete (for threads outside thread pool)
57static void generic_wait_handler(task_wait_handle wait_task)

Callers 2

operator deleteFunction · 0.85
aligned_alloc.hFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected