| 45 | } |
| 46 | |
| 47 | void 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) |
| 57 | static void generic_wait_handler(task_wait_handle wait_task) |
no outgoing calls
no test coverage detected