| 2544 | // Called by pthread to delete thread-local data stored by |
| 2545 | // pthread_setspecific(). |
| 2546 | extern "C" inline void DeleteThreadLocalValue(void* value_holder) { |
| 2547 | delete static_cast<ThreadLocalValueHolderBase*>(value_holder); |
| 2548 | } |
| 2549 | |
| 2550 | // Implements thread-local storage on pthreads-based systems. |
| 2551 | // |