| 395 | } |
| 396 | |
| 397 | void thread_destroy(void *thread) |
| 398 | { |
| 399 | #if defined(CONF_FAMILY_UNIX) |
| 400 | void *r = 0; |
| 401 | pthread_join((pthread_t)thread, &r); |
| 402 | #else |
| 403 | /*#error not implemented*/ |
| 404 | #endif |
| 405 | } |
| 406 | |
| 407 | void thread_yield() |
| 408 | { |
nothing calls this directly
no outgoing calls
no test coverage detected