| 58 | } |
| 59 | |
| 60 | int main() { |
| 61 | printf("in main\n"); |
| 62 | test_order1(); |
| 63 | |
| 64 | pthread_t t; |
| 65 | int rc = pthread_create(&t, NULL, thread_main, NULL); |
| 66 | assert(rc == 0); |
| 67 | pthread_join(t, NULL); |
| 68 | |
| 69 | return 0; |
| 70 | } |
nothing calls this directly
no test coverage detected