| 79 | } |
| 80 | |
| 81 | void CpuEngine::enableThreadHook() { |
| 82 | *_pthread_entry = (void*)pthread_setspecific_hook; |
| 83 | storeRelease(_current, this); |
| 84 | } |
| 85 | |
| 86 | void CpuEngine::disableThreadHook() { |
| 87 | *_pthread_entry = (void*)pthread_setspecific; |
nothing calls this directly
no test coverage detected