MCPcopy Create free account
hub / github.com/cppla/ServerStatus / thread_destroy

Function thread_destroy

server/src/system.c:397–405  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

395}
396
397void 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
407void thread_yield()
408{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected