| 162 | } |
| 163 | |
| 164 | static void* worker2(void* arg) { |
| 165 | worker2_impl(*static_cast<bthread_key_t*>(arg)); |
| 166 | return NULL; |
| 167 | } |
| 168 | |
| 169 | TEST(KeyTest, use_one_key_in_different_threads) { |
| 170 | bthread_key_t k; |
nothing calls this directly
no test coverage detected