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