| 442 | } |
| 443 | |
| 444 | void* close_the_fd(void* arg) { |
| 445 | bthread_usleep(10000/*10ms*/); |
| 446 | EXPECT_EQ(0, bthread_close(*(int*)arg)); |
| 447 | return NULL; |
| 448 | } |
| 449 | |
| 450 | TEST(FDTest, invalid_epoll_events) { |
| 451 | errno = 0; |
nothing calls this directly
no test coverage detected