Changeset 12840 for trunk/Ohana/src/getstar/src/SetSignals.c
- Timestamp:
- Apr 17, 2007, 9:59:02 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/getstar/src/SetSignals.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/getstar/src/SetSignals.c
r6968 r12840 30 30 for (i = 0; i < 36; i++) { 31 31 switch (i) { 32 /* can't redirect th issignals */33 case SIGKILL: /* kill -9: cannot be caught or ignored */34 case SIGSTOP: /* SIGSTOP: cannot be caught or ignored */32 /* can't redirect these signals */ 33 case SIGKILL: /* kill -9: cannot be caught or ignored (POSIX.1-1990) */ 34 case SIGSTOP: /* SIGSTOP: cannot be caught or ignored (POSIX.1-1990) */ 35 35 /* ignore these signals */ 36 case SIGCHLD: /* child halted: ignore */ 37 case SIGPWR: /* power failure - why ignore this? */ 38 case SIGWINCH: /* window resized */ 39 case SIGCONT: /* continue - maintain this action */ 40 case SIGTSTP: /* stop signal sent from tty - why ignore? */ 41 case SIGURG: /* socket signal, ignore this */ 36 case SIGCHLD: /* child halted: ignore (POSIX.1-1990) */ 37 case SIGCONT: /* continue - maintain this action (POSIX.1-1990) */ 38 case SIGTSTP: /* stop signal sent from tty - why ignore? (POSIX.1-1990) */ 39 case SIGURG: /* socket signal, ignore this (POSIX.1-2001) */ 40 # ifdef (SIGPWR) 41 case SIGPWR: /* power failure - why ignore this? (Sys V) */ 42 # endif 43 # ifdef (SIGWINCH) 44 case SIGWINCH: /* window resized (4.3BSD) */ 45 # endif 42 46 break; 43 47
Note:
See TracChangeset
for help on using the changeset viewer.
