| 631 | } |
| 632 | |
| 633 | void* ConnectThread(void* arg) { |
| 634 | bool timed = *(bool*)arg; |
| 635 | TestConnectInterruptImpl(timed); |
| 636 | return NULL; |
| 637 | } |
| 638 | |
| 639 | void TestConnectInterrupt(bool timed) { |
| 640 | bthread_t tid; |
nothing calls this directly
no test coverage detected