MCPcopy Create free account
hub / github.com/Inori/GPCS4 / scek_pthread_key_create

Function scek_pthread_key_create

GPCS4/SceModules/SceLibkernel/sce_kernel_pthread.cpp:181–190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

179
180
181int PS4API scek_pthread_key_create(pthread_key_t *key, void(*destructor)(void*))
182{
183 LOG_DEBUG("key %p destructor address %p", key, destructor);
184 // TODO:
185 // The calling convention is different,
186 // we need to make a wrapper,
187 // see scePthreadCreate
188 int err = pthread_key_create(key, nullptr);
189 return err;
190}

Callers

nothing calls this directly

Calls 1

pthread_key_createFunction · 0.85

Tested by

no test coverage detected