| 256 | } |
| 257 | |
| 258 | int thpool_num_threads(thpool_* thpool_p) { |
| 259 | return thpool_p->num_threads_alive; |
| 260 | } |
| 261 | |
| 262 | int thpool_get_thread_id(thpool_* thpool_p, pthread_t pthread) { |
| 263 | for(int i = 0; i < thpool_p->num_threads_alive; i++) { |
no outgoing calls
no test coverage detected