File: final.h

package info (click to toggle)
trn4 4.0-test77-16
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm
  • size: 3,660 kB
  • sloc: ansic: 48,331; sh: 6,792; tcl: 1,696; yacc: 660; perl: 108; makefile: 26
file content (33 lines) | stat: -rw-r--r-- 879 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* final.h
 */
/* This software is copyrighted as detailed in the LICENSE file. */


/* cleanup status for fast exits */

EXT bool panic INIT(FALSE);		/* we got hung up or something-- */
					/*  so leave tty alone */
EXT bool doing_ng INIT(FALSE);		/* do we need to reconstitute */
					/* current rc line? */

EXT char int_count INIT(0);		/* how many interrupts we've had */

EXT bool bos_on_stop INIT(FALSE);	/* set when handling the stop signal */
					/* would leave the screen a mess */

/* DON'T EDIT BELOW THIS LINE OR YOUR CHANGES WILL BE LOST! */

void final_init _((void));
void finalize _((int))
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR >= 5)
  __attribute__((noreturn))
#endif
  ;
Signal_t int_catcher _((int));
Signal_t sig_catcher _((int));
#ifdef SUPPORT_NNTP
Signal_t pipe_catcher _((int));
#endif
#ifdef SIGTSTP
Signal_t stop_catcher _((int));
#endif