| 301 | } |
| 302 | |
| 303 | extern "C" void* valloc(size_t size) { |
| 304 | return memalign(NBalloc::PAGE_ELEM, size); |
| 305 | } |
| 306 | |
| 307 | #if !defined(_MSC_VER) && !defined(_freebsd_) |
| 308 | // Workaround for pthread_create bug in linux. |
nothing calls this directly
no test coverage detected