ucspi-ssl  0.99e
TLS encryption for IPv6 communication
sig_pause.c
Go to the documentation of this file.
1 /* Public domain. */
2 
3 #include <signal.h>
4 #include "sig.h"
5 #include "hassgprm.h"
6 
7 void sig_pause(void)
8 {
9 #ifdef HASSIGPROCMASK
10  sigset_t ss;
11  sigemptyset(&ss);
12  sigsuspend(&ss);
13 #else
14  sigpause(0);
15 #endif
16 }
void sig_pause(void)
Definition: sig_pause.c:7