| 99 | } |
| 100 | |
| 101 | inline void ThreadLocalSetValue(pthread_key_t key, const void* value) { |
| 102 | int ret = pthread_setspecific(key, value); |
| 103 | ThreadLocalCheckReturn(ret, "pthread_setspecific"); |
| 104 | } |
| 105 | |
| 106 | #ifdef __APPLE__ |
| 107 | typedef struct __darwin_pthread_handler_rec darwin_pthread_handler; |
no test coverage detected