home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / os / linux / 8754 < prev    next >
Encoding:
Internet Message Format  |  1992-08-20  |  1.1 KB

  1. Path: sparky!uunet!dtix!darwin.sura.net!convex!news.utdallas.edu!corpgate!crchh327!minyard
  2. From: minyard@bnr.ca (Corey Minyard)
  3. Newsgroups: comp.os.linux
  4. Subject: Re: UUCICO doesn't fail properly
  5. Keywords: uucp, uucico, taylor
  6. Message-ID: <1992Aug21.035439.7544@bnr.ca>
  7. Date: 21 Aug 92 03:54:39 GMT
  8. References: <1992Aug10.122642.18430@usenet.ins.cwru.edu>
  9. Sender: news@bnr.ca (News on crchh327)
  10. Organization: Bell-Northern Research, Richardson, Tx.
  11. Lines: 23
  12. Nntp-Posting-Host: crchh453
  13.  
  14. I had the same problem with uucico, it did not time out on failure to
  15. get in to the remote end.  It turns out the signal handler did not
  16. set up interrupts to stop the read.  The fix is in the file sys1.c,
  17. you should find the line:
  18.  
  19.         s.sa_flags = 0;
  20.  
  21. and change it to:
  22.  
  23.     #ifdef SA_INTERRUPT
  24.         s.sa_flags = SA_INTERRUPT;
  25.     #else
  26.         s.sa_flags = 0;
  27.     #endif
  28.  
  29. BTW, thanks to the people who provide all the nifty tools for linux.
  30. I think linux is better than the commercial stuff we have at work.
  31.  
  32. Corey
  33. -- 
  34. ----------------------------------------------------------------------
  35.  
  36. Corey Minyard
  37.