c signals

Solutions on MaxInterview for c signals by the best coders in the world

showing results for - "c signals"
Oriana
03 Nov 2016
1#define SIGHUP  1   /* Hangup the process */ 
2#define SIGINT  2   /* Interrupt the process */ 
3#define SIGQUIT 3   /* Quit the process */ 
4#define SIGILL  4   /* Illegal instruction. */ 
5#define SIGTRAP 5   /* Trace trap. */ 
6#define SIGABRT 6   /* Abort. */