/* $OpenBSD: pause.c,v 1.7 2019/01/25 00:19:25 millert Exp $ */ /* * Written by Todd C. Miller * Public domain. */ #include #include /* * Backwards compatible pause(3). */ int pause(void) { sigset_t mask; return (sigprocmask(SIG_BLOCK, NULL, &mask) ? -1 : sigsuspend(&mask)); }