trap.h (935205e2307611615ed5a7fe0a32b225ffd8c19c) | trap.h (1794251add0bd0e0d70e1454060b21b8f4656cea) |
---|---|
1/*- 2 * Copyright (c) 1991, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Kenneth Almquist. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 27 unchanged lines hidden (view full) --- 36extern int pendingsigs; 37extern int in_dotrap; 38extern volatile sig_atomic_t gotwinch; 39 40void clear_traps(void); 41int have_traps(void); 42void setsignal(int); 43void ignoresig(int); | 1/*- 2 * Copyright (c) 1991, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Kenneth Almquist. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 27 unchanged lines hidden (view full) --- 36extern int pendingsigs; 37extern int in_dotrap; 38extern volatile sig_atomic_t gotwinch; 39 40void clear_traps(void); 41int have_traps(void); 42void setsignal(int); 43void ignoresig(int); |
44int issigchldtrapped(void); |
|
44void onsig(int); 45void dotrap(void); 46void setinteractive(int); 47void exitshell(int) __dead2; 48void exitshell_savedstatus(void) __dead2; | 45void onsig(int); 46void dotrap(void); 47void setinteractive(int); 48void exitshell(int) __dead2; 49void exitshell_savedstatus(void) __dead2; |