diff options
Diffstat (limited to 'sig.h')
| -rw-r--r-- | sig.h | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,6 +1,6 @@ /* sig.h -- header file for signal handler definitions. */ -/* Copyright (C) 1994 Free Software Foundation, Inc. +/* Copyright (C) 1994-2005 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. @@ -108,6 +108,9 @@ do { \ #endif /* JOB_CONTROL */ +/* Extern variables */ +extern volatile int sigwinch_received; + /* Functions from sig.c. */ extern sighandler termination_unwind_protect __P((int)); extern sighandler sigint_sighandler __P((int)); @@ -117,6 +120,10 @@ extern void reset_terminating_signals __P((void)); extern void throw_to_top_level __P((void)); extern void jump_to_top_level __P((int)) __attribute__((__noreturn__)); +extern sighandler sigwinch_sighandler __P((int)); +extern void set_sigwinch_handler __P((void)); +extern void unset_sigwinch_handler __P((void)); + /* Functions defined in trap.c. */ extern SigHandler *set_sigint_handler __P((void)); extern SigHandler *trap_to_sighandler __P((int)); |
