| 69 | } |
| 70 | |
| 71 | extern "C" void* aligned_alloc(size_t alignment, size_t size) { |
| 72 | return memalign(alignment, size); |
| 73 | } |
| 74 | |
| 75 | #if !defined(_MSC_VER) && !defined(_freebsd_) |
| 76 | // Workaround for pthread_create bug in linux. |
nothing calls this directly
no test coverage detected