| 427 | } |
| 428 | |
| 429 | void thread_detach(void *thread) |
| 430 | { |
| 431 | #if defined(CONF_FAMILY_UNIX) |
| 432 | pthread_detach((pthread_t)(thread)); |
| 433 | #elif defined(CONF_FAMILY_WINDOWS) |
| 434 | CloseHandle(thread); |
| 435 | #else |
| 436 | #error not implemented |
| 437 | #endif |
| 438 | } |
| 439 | |
| 440 | |
| 441 |
nothing calls this directly
no outgoing calls
no test coverage detected