MCPcopy Create free account
hub / github.com/git/git / pthread_setspecific

Function pthread_setspecific

compat/win32/pthread.h:86–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 5

run_threadFunction · 0.85
async_die_is_recursingFunction · 0.85
tr2tls_create_selfFunction · 0.85
tr2tls_unset_selfFunction · 0.85
set_thread_dataFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected