| 74 | |
| 75 | typedef DWORD pthread_key_t; |
| 76 | static inline int pthread_key_create(pthread_key_t *keyp, void (*destructor)(void *value) UNUSED) |
| 77 | { |
| 78 | return (*keyp = TlsAlloc()) == TLS_OUT_OF_INDEXES ? EAGAIN : 0; |
| 79 | } |
| 80 | |
| 81 | static inline int pthread_key_delete(pthread_key_t key) |
| 82 | { |
no outgoing calls
no test coverage detected