home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / usr.bin / lisp / lispnews / text0194.txt < prev    next >
Encoding:
Text File  |  1985-11-10  |  754 b   |  20 lines

  1. re:    
  2.     From: chris@ucbcory (Chris Guthrie)
  3.     We are having a good deal
  4.     of trouble with them being left running instead of dying and killing
  5.     the load here.
  6.  
  7. The problem is that people are setting a flag in their lisp init files
  8. which instruct lisp to ignore 'end of file' (much like the c shell).
  9. If a connection is broken (ipc connection breaks or modem hangs up), then
  10. lisp is sent a hangup signal (which it ignores) and then a continuous
  11. sequence of 'end of files' which it ignores after a bit of processing.
  12. The solution is this:
  13.   If you have something in your init file which instructs lisp to ignore
  14. end of files  (such as (sstatus ignoreeof t)), then you should also
  15. have   (signal 1 'exit)   in the init file so lisp will exit upon a hangup.
  16.  
  17.  
  18.  
  19.  
  20.