| 179 | |
| 180 | |
| 181 | int 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 | } |
nothing calls this directly
no test coverage detected