home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / unix / question / 10858 < prev    next >
Encoding:
Text File  |  1992-09-09  |  4.9 KB  |  173 lines

  1. Path: sparky!uunet!cs.utexas.edu!sun-barr!ames!haven.umd.edu!mimsy!afterlife!adm!news
  2. From: postmaster@vd1.hanscom.af.mil (SMTP MAILER)
  3. Newsgroups: comp.unix.questions
  4. Subject: Mail Delivery Problem
  5. Message-ID: <32493@adm.brl.mil>
  6. Date: 9 Sep 92 18:28:42 GMT
  7. Sender: news@adm.brl.mil
  8. Lines: 163
  9.  
  10.  
  11.  ----Reason for mail failure follows----
  12. Sending mail to recipient(s) woodfordm :
  13.   Couldn't make final delivery.
  14.  
  15.  ----Transcript of message follows----
  16. Received: from gw1.hanscom.af.mil by vd1.hanscom.af.mil with SMTP ; 
  17.           Wed,  9 Sep 92 11:39:57 EST
  18. Date: 9 Sep 92 11:34:00 EST
  19. From: INFO-UNIX@BRL.MIL
  20. Subject: INFO-UNIX Digest  V16#003
  21. To: "woodfordm" <woodfordm@vd1.hanscom.af.mil>
  22.  
  23. Return-Path: <info-unix-request@sem.brl.mil>
  24. Received: from SEM.BRL.MIL by gw1.hanscom.af.mil with SMTP ; 
  25.           Wed,  9 Sep 92 11:33:20 EST
  26. Received: from SEM.BRL.MIL by SEM.BRL.MIL id ab09369; 8 Sep 92 15:29 EDT
  27. Received: from sem.brl.mil by SEM.BRL.MIL id aa09352; 8 Sep 92 15:15 EDT
  28. Date:       Tue, 08 Sep 92 15:15:29 EST
  29. From:       The Moderator (Mike Muuss) <Info-Unix-Request@BRL.MIL>
  30. To:         INFO-UNIX@BRL.MIL
  31. Reply-To:   INFO-UNIX@BRL.MIL
  32. Subject:    INFO-UNIX Digest  V16#003
  33. Message-ID:  <9209081515.aa09352@SEM.BRL.MIL>
  34.  
  35. INFO-UNIX Digest          Tue, 08 Sep 1992              V16#003
  36.  
  37. Today's Topics:
  38.                   Re: How to prevent a large core-dump
  39.                         BASH Compiling for SCO.
  40.                            coroutines package
  41.               Re: How to store data files in binary format
  42. -----------------------------------------------------------------
  43.  
  44. From: Thomas Koenig <ecmtwhk@ccu1.aukuni.ac.nz>
  45. Subject: Re: How to prevent a large core-dump
  46. Date: 28 Aug 92 09:51:20 GMT
  47. To:       info-unix@sem.brl.mil
  48.  
  49. soos@math.utwente.nl (Adwin Soos) wants
  50.  
  51. >some suggestions on how
  52. >to prevent that a large core-dump will be made. 
  53.  
  54. #include <sys/resource.h>
  55. [...]
  56.     struct rlimit rlp;
  57.  
  58.     getrlimit(RLIMIT_CORE,&rlp);
  59.     rlp.rlim_cur = 0;
  60.     setrlimit (RLIMIT_CORE,&rlp);
  61.  
  62. limits the size of the core to 0 bytes (at least on an SGI running IRIX).
  63. -- 
  64. Thomas Koenig, ecmtwhk@ccu1.aukuni.ac.nz, ib09@rz.uni-karlsruhe.de
  65. The joy of engineering is to find a straight line on a double logarithmic
  66. diagram.
  67.  
  68. -----------------------------
  69.  
  70. From: Ken Germann <kgermann@zeos.com>
  71. Subject: BASH Compiling for SCO.
  72. Date: 7 Sep 92 15:48:44 GMT
  73. To:       info-unix@sem.brl.mil
  74.  
  75.  
  76. I receive this error when compiling BASH 1.12 for SCO. Any ideas on 
  77. correcting this problem would be appreciated.
  78.  
  79. # make install
  80.  
  81.         make   DESTDIR=/usr/gnu/bin -f bash-Makefile install
  82.  
  83.         rm -f bash
  84.  
  85.         cc     -g -L./lib/readline/  -L./lib/glob/ \
  86.  
  87.            -o bash shell.o y.tab.o general.o make_cmd.o print_cmd.o   dispose_cm
  88.  
  89. d.o execute_cmd.o variables.o copy_cmd.o error.o  expr.o flags.o jobs.o subst.o
  90.  
  91. hash.o mailcheck.o test.o  trap.o alias.o ./lib/malloc/malloc.o  braces.o unwind
  92.  
  93. _prot.o  siglist.o  version.o bashline.o builtins/libbuiltins.a -lreadline -lter
  94.  
  95. mcap -lglob
  96.  
  97. undefined                       first referenced
  98.  
  99.  symbol                             in file
  100.  
  101. alloca                              y.tab.o
  102.  
  103. ld fatal: Symbol referencing errors. No output written to bash
  104.  
  105. *** Error code 13
  106.  
  107.  
  108.  
  109. Stop.
  110.  
  111. *** Error code 1
  112.  
  113.  
  114.  
  115. Stop
  116. -- 
  117. Ken Germann              ZZZZ EEEE  OO   SSS    ZEOS International, Ltd.  
  118. support@zeos.com   INET     Z E    O  O S       Technical Support Dept.
  119. uunet!zeos!support UUCP    Z  EE   O  O  SS     530 5th Ave N.W.
  120. 800-228-5390      VOICE   Z   E    O  O    S    St. Paul, MN 55112
  121. 612-633-7337             ZZZZ EEEE  OO  SSS     FAX         612-633-4607
  122.  
  123. -----------------------------
  124.  
  125. From: Jean-Marc Vandel <vandel@di.epfl.ch>
  126. Subject: coroutines package
  127. Date: 7 Sep 92 16:43:42 GMT
  128. Sender: news@disuns2.epfl.ch
  129. Nntp-Posting-Host: disuns2.epfl.ch
  130. To:       info-unix@sem.brl.mil
  131.  
  132. Hi all !
  133.  
  134.      I'm looking for a PD coroutines package, as portable as possible ... I found the NIHCL
  135. package for C++ on alw.nih.gov, but are there any other ones ?
  136.      Thanks in advance,
  137. --
  138.  
  139.  
  140.                                            Jean-Marc Vandel
  141.  
  142.  
  143.  --------------------------------------+--------------------------------------
  144.     Swiss Institute of Technology     |    E-mail : vandel@di.epfl.ch
  145.     DI-LIT                            |    Work   : +41 21 693-2648
  146.     ELD-231                           |    Home   : +41 21 634-1846
  147.     CH-1015 Lausanne (Switzerland)    |    Fax    : +41 21 693-4660
  148.  
  149. -----------------------------
  150.  
  151. From: "S.Ramakrishnan" <ramakris@csgrad.cs.vt.edu>
  152. Subject: Re: How to store data files in binary format
  153. Date: 7 Sep 92 17:09:05 GMT
  154. Sender: usenet@creatures.cs.vt.edu
  155. To:       info-unix@sem.brl.mil
  156.  
  157. In article <708@svcs1.UUCP> slix@svcs1.UUCP (Bill Miller) writes:
  158.  
  159. >(...) (Can 'awk' read compressed files - or
  160. >can you pipe the compressed file, and pipe it to awk?)
  161.  
  162. zcat it: 
  163.     zcat <compressed-file>.Z | awk (...)
  164.  
  165. ---
  166. S Ramakrishnan, CS Dept, McBryde Hall, VaTech
  167.  
  168. -----------------------------
  169.  
  170.  
  171. End of INFO-UNIX Digest
  172. ***********************
  173.