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