X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=sig.h;h=46bded81f6ca06990d380b201629d77cb50bfba4;hb=f1be666c7d78939ad775078d290bec2758fa29a2;hp=a13f54c7e9c7219e3b068b6cdcd16dbfe7bbaf3a;hpb=95732b497d12c98613bb3c5db16b61f377501a59;p=platform%2Fupstream%2Fbash.git diff --git a/sig.h b/sig.h index a13f54c..46bded8 100644 --- a/sig.h +++ b/sig.h @@ -1,6 +1,6 @@ /* sig.h -- header file for signal handler definitions. */ -/* Copyright (C) 1994-2005 Free Software Foundation, Inc. +/* Copyright (C) 1994-2006 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. @@ -111,12 +111,17 @@ do { \ /* Extern variables */ extern volatile int sigwinch_received; +extern int interrupt_immediately; +extern int terminate_immediately; + /* Functions from sig.c. */ -extern sighandler termination_unwind_protect __P((int)); +extern sighandler termsig_sighandler __P((int)); +extern void termsig_handler __P((int)); extern sighandler sigint_sighandler __P((int)); extern void initialize_signals __P((int)); extern void initialize_terminating_signals __P((void)); extern void reset_terminating_signals __P((void)); +extern void top_level_cleanup __P((void)); extern void throw_to_top_level __P((void)); extern void jump_to_top_level __P((int)) __attribute__((__noreturn__));