| 234 | } |
| 235 | |
| 236 | void* show_self(void*) { |
| 237 | EXPECT_NE(0ul, bthread_self()); |
| 238 | LOG(INFO) << "bthread_self=" << bthread_self(); |
| 239 | return NULL; |
| 240 | } |
| 241 | |
| 242 | TEST_F(BthreadTest, bthread_self) { |
| 243 | ASSERT_EQ(0ul, bthread_self()); |
nothing calls this directly
no test coverage detected