| 21 | #include "acutest.h" |
| 22 | |
| 23 | static void get_thread_friendly_id(void *arg) { |
| 24 | int *threadID = (int*)arg; |
| 25 | *threadID = ThreadPools_GetThreadID(); |
| 26 | } |
| 27 | |
| 28 | void test_threadPools_threadID() { |
| 29 | ThreadPools_CreatePools(READER_COUNT, WRITER_COUNT, UINT64_MAX); |
nothing calls this directly
no test coverage detected