| 366 | bool use_same_keytable = false; |
| 367 | |
| 368 | static void pool_thread_impl(PoolData* data) { |
| 369 | if (NULL == bthread_getspecific(data->key)) { |
| 370 | ASSERT_EQ(0, bthread_setspecific(data->key, data)); |
| 371 | } else { |
| 372 | use_same_keytable = true; |
| 373 | } |
| 374 | }; |
| 375 | |
| 376 | static void* pool_thread(void* args) { |
| 377 | pool_thread_impl((PoolData*)args); |
no test coverage detected