| 122 | } |
| 123 | |
| 124 | void* just_exit(void* arg) { |
| 125 | LOG(INFO) << "just_exit(" << arg << ")"; |
| 126 | bthread_exit(NULL); |
| 127 | EXPECT_TRUE(false) << "just_exit(" << arg << ") should never be here"; |
| 128 | return NULL; |
| 129 | } |
| 130 | |
| 131 | void* repeated_sleep(void* arg) { |
| 132 | start = true; |
nothing calls this directly
no test coverage detected