home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / UUPC11XT.ZIP / RN / FINAL.H < prev    next >
Encoding:
Text File  |  1992-11-21  |  943 b   |  42 lines

  1. /* $Header: E:\SRC\UUPC\RN\RCS/FINAL.H 1.1 1992/11/21 06:14:58 ahd Exp $
  2.  *
  3.  * $Log: FINAL.H $
  4.  * Revision 1.1  1992/11/21  06:14:58  ahd
  5.  * Initial
  6.  *
  7.  *
  8.  *    Rev 1.0   18 Nov 1990  0:22:48
  9.  * Initial revision.
  10.  * Revision 4.3  85/05/01  11:38:17  lwall
  11.  * Baseline for release with 4.3bsd.
  12.  *
  13.  */
  14.  
  15. /* cleanup status for fast exits */
  16.  
  17. EXT bool panic INIT(FALSE);        /* we got hung up or something-- */
  18.                     /*  so leave tty alone */
  19. EXT bool rc_changed INIT(FALSE);    /* need we rewrite .newsrc? */
  20. EXT bool doing_ng INIT(FALSE);        /* do we need to reconstitute */
  21.                     /* current rc line? */
  22.  
  23. EXT char int_count INIT(0);        /* how many interrupts we've had */
  24.  
  25. /* signal catching routines */
  26.  
  27. #ifdef msdos
  28. void    int_catcher();
  29. void    sig_catcher();
  30. #else
  31. int    int_catcher();
  32. int    sig_catcher();
  33. #endif
  34.  
  35. #ifdef SIGTSTP
  36.     int    stop_catcher();
  37.     int    cont_catcher();
  38. #endif
  39.  
  40. void    final_init();
  41. void    finalize();
  42.