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: 1587c3918da671801f847fccb1c7a13556864e3d (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);
	if (sigdelset(&mask, sig)) return -1;
	return sigsuspend(&mask);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月08日 22:31:23 +0000

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