Pending Signals
#include <stdio.h>
#include <signal.h>
int main ()
{
sigset_t newset, pending;
sigemptyset (&newset);
sigaddset (&newset,SIGINT);
sigaddset (&newset,SIGQUIT);
sigprocmask (SIG_BLOCK,&newset,NULL);
printf ("Press ^C or ^\\ in the next 5 seconds\n");
sleep(5);
sigpending (&pending);
if (sigismember(&pending,SIGQUIT))
printf ("SIGQUIT is pending");
if (sigismember(&pending,SIGINT))
printf ("SIGINT is pending");
return 0;
}
Recent Stories
Top DiscoverSDK Experts
Mendy Bennett
Experienced with Ad network & Ad servers.
Mobile | Ad Networks and 1 more
View Profile
Karen Fitzgerald
7 years in Cross-Platform development.
Mobile | Cross Platform Frameworks
View Profile
X
Compare Products
Select up to three two products to compare by clicking on the compare icon () of each product.
{{compareToolModel.Error}}Now comparing:
{{product.ProductName | createSubstring:25}} X
{{CommentsModel.TotalCount}} Comments
Your Comment