1 2 3 4 5 6 7 8 9 10 11
#include <signal.h> /* sigpause */ /** * Remove a signal from the signal mask and suspend the thread. * * LSB 5.0: LSB-Core-generic/baselib---xpg-sigpause.html */ int __xpg_sigpause(int sig) { return sigpause(sig); }