int sigaction(int signum, const struct sigaction *act, struct sigaction *oldact);
分析:
1 struct sigaction 2 { 3 void(*sa_handler)(int); 4 void(*sa_sigaction)(int, siginfo_t *, void *); 5 sigset_t sa_mask; 6 int sa_flags; 7 void(*sa_restorer)(void); 8 };
分析:
重点掌握:
原文:https://www.cnblogs.com/sunbines/p/10265659.html