MCPcopy Create free account
hub / github.com/Hamlib/Hamlib / pthread_exit

Function pthread_exit

include/hamlib/winpthreads.h:563–572  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

561#define pthread_getcpuclockid(T, C) ENOTSUP
562
563static int pthread_exit(void *res)
564{
565 pthread_t t = pthread_self();
566
567 t->ret_arg = res;
568
569 _pthread_cleanup_dest(t);
570
571 longjmp(t->jb, 1);
572}
573
574
575static void _pthread_invoke_cancel(void)

Callers 14

smartsdr_data_handlerFunction · 0.85
mainFunction · 0.85
rotorez_threadFunction · 0.85
mainFunction · 0.85
rotorez_threadFunction · 0.85
async_data_handlerFunction · 0.85
morse_data_handlerFunction · 0.85
mainFunction · 0.85
handle_socketFunction · 0.85
handle_socketFunction · 0.85
handle_socketFunction · 0.85
mainFunction · 0.85

Calls 2

pthread_selfFunction · 0.85
_pthread_cleanup_destFunction · 0.85

Tested by 1

mainFunction · 0.68