pthread_sigqueue (3) Linux Manual Page
pthread_sigqueue – queue a signal and data to a thread Synopsis #include <pthread.h> #include <signal.h> int pthread_sigqueue(pthread_t thread, int sig, const union sigval value); Compile and link with -pthread. Feature Test Macro Requirements for glibc (see feature_test_macros(7)): pthread_sigqueue(): _GNU_SOURCE Description The pthread_sigqueue() function performs a similar task to sigqueue(3), but, rather than sending a signal…
