Changeset 13322
- Timestamp:
- May 9, 2007, 6:30:17 PM (19 years ago)
- Location:
- trunk/Ohana/src
- Files:
-
- 6 edited
-
elixir/src/ConfigInit.c (modified) (2 diffs)
-
imregister/imreg/SetSignals.c (modified) (2 diffs)
-
photdbc/src/SetSignals.c (modified) (1 diff)
-
relastro/src/SetSignals.c (modified) (1 diff)
-
relphot/src/SetSignals.c (modified) (1 diff)
-
uniphot/src/SetSignals.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/elixir/src/ConfigInit.c
r10336 r13322 42 42 signal (SIGXFSZ, SIG_DIE); 43 43 signal (SIGIOT, SIG_DIE); 44 signal (SIGPWR, SIG_DIE);45 44 signal (SIGHUP, SIG_IGN); 46 45 signal (SIGINT, SIG_DIE); … … 58 57 signal (SIGVTALRM, SIG_IGN); 59 58 signal (SIGIO, SIG_IGN); 60 signal (SIGWINCH, SIG_IGN);61 59 62 60 /* signals which are not always defined */ 61 # ifdef SIGPWR 62 signal (SIGPWR, SIG_DIE); /* power failure (Sys V) */ 63 # endif 64 # ifdef SIGWINCH 65 signal (SIGWINCH, SIG_IGN); /* window resized (4.3BSD) */ 66 # endif 63 67 # ifdef SIGSYS 64 68 signal (SIGSYS, SIG_DIE); -
trunk/Ohana/src/imregister/imreg/SetSignals.c
r2823 r13322 30 30 signal (SIGXFSZ, SIG_DIE); 31 31 signal (SIGIOT, SIG_DIE); 32 signal (SIGPWR, SIG_DIE);33 32 signal (SIGINT, SIG_DIE); 34 33 … … 49 48 signal (SIGVTALRM, SIG_IGN); 50 49 signal (SIGIO, SIG_IGN); 51 signal (SIGWINCH, SIG_IGN);52 50 53 51 /* signals which are not always defined */ 52 # ifdef SIGPWR 53 signal (SIGPWR, SIG_DIE); /* power failure (Sys V) */ 54 # endif 55 # ifdef SIGWINCH 56 signal (SIGWINCH, SIG_IGN); /* window resized (4.3BSD) */ 57 # endif 54 58 # ifdef SIGUNUSED 55 59 signal (SIGUNUSED, SIG_DFL); -
trunk/Ohana/src/photdbc/src/SetSignals.c
r4864 r13322 35 35 /* ignore these signals */ 36 36 case SIGCHLD: /* child halted: ignore */ 37 case SIGPWR: /* power failure - why ignore this? */38 case SIGWINCH: /* window resized */39 37 case SIGCONT: /* continue - maintain this action */ 40 38 case SIGTSTP: /* stop signal sent from tty - why ignore? */ 41 39 case SIGURG: /* socket signal, ignore this */ 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 -
trunk/Ohana/src/relastro/src/SetSignals.c
r12332 r13322 35 35 /* ignore these signals */ 36 36 case SIGCHLD: /* child halted: ignore */ 37 case SIGPWR: /* power failure - why ignore this? */38 case SIGWINCH: /* window resized */39 37 case SIGCONT: /* continue - maintain this action */ 40 38 case SIGTSTP: /* stop signal sent from tty - why ignore? */ 41 39 case SIGURG: /* socket signal, ignore this */ 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 -
trunk/Ohana/src/relphot/src/SetSignals.c
r4864 r13322 35 35 /* ignore these signals */ 36 36 case SIGCHLD: /* child halted: ignore */ 37 case SIGPWR: /* power failure - why ignore this? */38 case SIGWINCH: /* window resized */39 37 case SIGCONT: /* continue - maintain this action */ 40 38 case SIGTSTP: /* stop signal sent from tty - why ignore? */ 41 39 case SIGURG: /* socket signal, ignore this */ 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 -
trunk/Ohana/src/uniphot/src/SetSignals.c
r4864 r13322 35 35 /* ignore these signals */ 36 36 case SIGCHLD: /* child halted: ignore */ 37 case SIGPWR: /* power failure - why ignore this? */38 case SIGWINCH: /* window resized */39 37 case SIGCONT: /* continue - maintain this action */ 40 38 case SIGTSTP: /* stop signal sent from tty - why ignore? */ 41 39 case SIGURG: /* socket signal, ignore this */ 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.
