| 84 | } |
| 85 | |
| 86 | static inline int pthread_setspecific(pthread_key_t key, const void *value) |
| 87 | { |
| 88 | return TlsSetValue(key, (void *)value) ? 0 : EINVAL; |
| 89 | } |
| 90 | |
| 91 | static inline void *pthread_getspecific(pthread_key_t key) |
| 92 | { |
no outgoing calls
no test coverage detected