| 1462 | } |
| 1463 | |
| 1464 | ThreadState *createThread(void *(*thread_func)(ThreadState *, void *), |
| 1465 | void *arg) { |
| 1466 | return newThread(thread_func, arg, NULL); |
| 1467 | } |
| 1468 | |
| 1469 | void *joinThread(ThreadState *ts) { |
| 1470 | void *result; |
nothing calls this directly
no test coverage detected