| 252 | } |
| 253 | |
| 254 | void skr_destroy_thread(SThreadHandle handle) |
| 255 | { |
| 256 | pthread_join(handle, NULL); |
| 257 | handle = NULL; |
| 258 | } |
| 259 | |
| 260 | void skr_join_thread(SThreadHandle handle) { pthread_join(handle, NULL); } |
| 261 |
no outgoing calls
no test coverage detected