| 108 | |
| 109 | void thread1() { thread(1); } |
| 110 | void thread2() |
| 111 | { |
| 112 | thread(2); |
| 113 | if (is_dlib_thread() == false) |
| 114 | failure = true; |
| 115 | } |
| 116 | void thread3() { thread(3); } |
| 117 | void thread4() { thread(4); } |
| 118 | void thread5() { thread(5); } |
nothing calls this directly
no test coverage detected