home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / lang / fortran / 2884 < prev    next >
Encoding:
Text File  |  1992-07-30  |  1.6 KB  |  40 lines

  1. Newsgroups: comp.lang.fortran
  2. Path: sparky!uunet!sun-barr!cs.utexas.edu!uwm.edu!csd4.csd.uwm.edu!jgd
  3. From: jgd@csd4.csd.uwm.edu (John G Dobnick)
  4. Subject: Re: Why CALL EXIT? (was Re: Question for C ==> Fortran)
  5. Message-ID: <1992Jul30.171640.11691@uwm.edu>
  6. Originator: jgd@csd4.csd.uwm.edu
  7. Sender: news@uwm.edu (USENET News System)
  8. Reply-To: jgd@csd4.csd.uwm.edu
  9. Organization: University of Wisconsin - Milwaukee
  10. References: <1992Jul29.204115.3917@walter.cray.com>
  11. Date: Thu, 30 Jul 1992 17:16:40 GMT
  12. Lines: 26
  13.  
  14. From article <1992Jul29.204115.3917@walter.cray.com>, by wws@craywr.cray.com (Walter Spector):
  15. > This is something I have never understood in almost 20 years of Fortran
  16. > programming.  Why do so many people use the non-standard CALL EXIT
  17. > instead of the standardized-for-over-25-years STOP statement?
  18. > Is/was there magic associated with it on some arcane systems?
  19.  
  20.  
  21. Not so much "arcane" systems, as "old" systems.  On older systems,
  22. CALL EXIT was a return to the Monitor (or Operating System, if you
  23. wish to call it that).  STOP, on the other hand, did just that --
  24. it _stopped_ the machine!  This is clearly an unpopular thing to do 
  25. on a multi-user system, but most of these older systems were,
  26. effectively, single user, with the user standing right in front of
  27. the machine.
  28.  
  29. I suspect the continued use of CALL EXIT is more habit than anything else.
  30.  
  31. -- 
  32. John G Dobnick                          ATTnet: (414) 229-5727
  33. Computing Services Division             INTERNET: jgd@uwm.edu
  34. University of Wisconsin - Milwaukee     UUCP: uunet!uwm!jgd
  35.  
  36. "Knowing how things work is the basis for appreciation,
  37. and is thus a source of civilized delight."  -- William Safire
  38.  
  39.