标签:pre gac 程序 nal 赋值 and int 信号集 struct
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 };
分析:
重点掌握:
标签:pre gac 程序 nal 赋值 and int 信号集 struct
原文地址:https://www.cnblogs.com/sunbines/p/10265659.html