| 68 | const struct timespec *abstime); |
| 69 | |
| 70 | static inline void NORETURN pthread_exit(void *ret) |
| 71 | { |
| 72 | _endthreadex((unsigned)(uintptr_t)ret); |
| 73 | } |
| 74 | |
| 75 | typedef DWORD pthread_key_t; |
| 76 | static inline int pthread_key_create(pthread_key_t *keyp, void (*destructor)(void *value) UNUSED) |
no outgoing calls
no test coverage detected