| 12 | static int64_t counter = 0; |
| 13 | |
| 14 | TEST(SimpleSpin, Test0) |
| 15 | { |
| 16 | std::atomic_flag lock0 = ATOMIC_FLAG_INIT; |
| 17 | spin_lock(&lock0); |
| 18 | spin_unlock(&lock0); |
| 19 | } |
| 20 | |
| 21 | static void* mythread(void *v) |
| 22 | { |
nothing calls this directly
no test coverage detected