summaryrefslogtreecommitdiff
path: root/libgcompat/signal.c
blob: 17e54434f49e7589a71c3cbf2f0e6809bb9e947d (plain) (blame)
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);
}