| 41 | } |
| 42 | |
| 43 | int |
| 44 | pthread_create_wrapper(pthread_t *__restrict thread, const pthread_attr_t *attr, |
| 45 | void *(*start_routine)(void *), void *__restrict arg) { |
| 46 | pthread_create_wrapper_init(); |
| 47 | |
| 48 | return pthread_create_fptr(thread, attr, start_routine, arg); |
| 49 | } |
| 50 | #endif /* JEMALLOC_PTHREAD_CREATE_WRAPPER */ |
| 51 | |
| 52 | #ifndef JEMALLOC_BACKGROUND_THREAD |
no test coverage detected