| 29 | |
| 30 | #if defined(JEMALLOC_LAZY_LOCK) && !defined(_WIN32) |
| 31 | JEMALLOC_EXPORT int |
| 32 | pthread_create(pthread_t *__restrict thread, |
| 33 | const pthread_attr_t *__restrict attr, void *(*start_routine)(void *), |
| 34 | void *__restrict arg) { |
| 35 | return pthread_create_wrapper(thread, attr, start_routine, arg); |
| 36 | } |
| 37 | #endif |
| 38 | |
| 39 | /******************************************************************************/ |