sigpause.c\signal\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/signal/sigpause.c
blob: 363d2fec27f9cc720cbbef0236061b4bd0c2159a (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <signal.h>
int sigpause(int sig)
{
	sigset_t mask;
	sigprocmask(0, 0, &mask);
	sigdelset(&mask, sig);
	return sigsuspend(&mask);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月07日 10:37:37 +0000

AltStyle によって変換されたページ (->オリジナル) /