home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / sys / mips / 919 < prev    next >
Encoding:
Text File  |  1992-09-07  |  5.5 KB  |  127 lines

  1. Newsgroups: comp.sys.mips
  2. Path: sparky!uunet!utcsri!torn!watserv2.uwaterloo.ca!watmath!plg.uwaterloo.ca!rastroob
  3. From: rastroob@plg.uwaterloo.ca (Rick Stroobosscher)
  4. Subject: (none)
  5. Message-ID: <92Sep4.165401edt.29117@plg.uwaterloo.ca>
  6. Originator: root@plg.uwaterloo.ca
  7. Sender: news@math.uwaterloo.ca (News Owner)
  8. Organization: University of Waterloo
  9. Date: Fri, 4 Sep 1992 20:53:52 GMT
  10. Lines: 115
  11.  
  12. We are pleased to announce, to any interested parties, the availability of
  13. Version 3.4.4 of uC++ (pronounced micro-C++).  uC++ extends the C++ programming
  14. language in somewhat the same way that C++ extends the C programming language.
  15. The extensions introduce new objects that augment the existing set of control
  16. flow facilities and provide for light-weight concurrency on uniprocessor and
  17. parallel execution on multiprocessor computers running the UNIX operating
  18. system.  uC++ is not another thread package built on top of C++, but a
  19. comprehensive set of language extensions that integrate the notions of
  20. coroutine, mutual exclusion and concurrent execution into the language.
  21.  
  22.  
  23. Here are some things to watch out for in Version 3.4.4:
  24.  
  25. 1.  The uC++ translator may fail when given very bad syntax errors.  The error
  26. recovery facilities of the translator will be updated in version 4.  Also, the
  27. translator is vulnerable to programs that use the same names for types and
  28. routines.  Beware of this vulnerability.  It may show up in very subtle errors.
  29.  
  30. 2. The "inline" version of the runtime environment is not working in this
  31. release, so that performance is significantly slower than it can be. When the
  32. "inline" version is working, performance is comparable to any light- weight
  33. tasking system.
  34.  
  35. 3. The only multiprocessor computer supported in this release is the Sequent
  36. Symmetry. Ports to more vendor/machines will appear shortly.
  37.  
  38.  
  39. uC++ requires at least version 3.8 of dmake, which is available by anonymous ftp
  40. from the following location (remember to set your ftp mode to binary):
  41.  
  42.     watmsg.uwaterloo.ca (129.97.141.9)   pub/dmake/dmake38.tar.Z
  43.  
  44. Execute the following command to unpack the source:
  45.  
  46.     % zcat dmake38.tar.Z | tar -xf -
  47.  
  48. To build dmake, edit the variables in file ./unix/startup.h.  The variable
  49. MAKESTARTUP must specify the location of the startup.mk file, which contains all
  50. the implicit recipes.  This file is placed at the top level of the source
  51. directory after dmake is built.  If dmake is not being installed in a public
  52. location, set the value of MAKESTARTUP to dmake-source-path/startup.mk.  After
  53. setting the MAKESTARTUP variable, execute the command make in directory dmake to
  54. determine what configurations are available.  A list of possible configurations
  55. will be printed.  Once dmake is built, add the executable to your command path.
  56.  
  57. The current version of uC++ can be obtained by anonymous ftp from the following
  58. location (remember to set your ftp mode to binary):
  59.  
  60.     watmsg.uwaterloo.ca (129.97.141.9)   pub/uSystem/u++-3.4.4.tar.Z
  61.  
  62. Execute the following command to unpack the source:
  63.  
  64.     % zcat u++-3.4.4.tar.Z | tar -xf -
  65.  
  66.  
  67. To build uC++, edit the variables in file ./Makefile.  The variable ROOT must
  68. specify the current location of the uC++ source (the path to the directory that
  69. contains the source).  The variable BINDIR specifies the location where the u++
  70. executable and other executables needed for compilation are placed.  The LIBDIR
  71. variable specifies the location for the u++ runtime libraries.  Both BINDIR and
  72. LIBDIR have default values.  After setting at least the ROOT variable, execute
  73. the command dmake in this directory to determine what configurations are
  74. available.  A list of possible configurations will be printed.
  75.  
  76. After installation is complete, there will be a number of executables created in
  77. the BINDIR location.  Add this directory to your command path to access the
  78. compilation command u++, or move the u++ executable itself to a directory in
  79. your command path.  Do not move the other executables in BINDIR, as the u++
  80. executable references these executables and the runtime library via hard coded
  81. path names set at installation time.
  82.  
  83.  
  84. A postscript version of the uC++ reference manual is available in the same ftp
  85. directory as u++-3.4.4.tar.Z, called u++-3.4.4.ps.  It contains a copy of the
  86. uC++ documentation that has been formatted for 8.5x11 paper.  This file has been
  87. made available because some people have had problems LaTeXing the documentation
  88. that comes with the uC++ distribution.  Normally, it is unnecessary to retrieve
  89. this file as uC++ comes with the latex source for the reference manual.
  90.  
  91.  
  92. uC++ runs on the following processors: M68K series, NS32K series, VAX, MIPS,
  93. Intel 386, Sparc, and the following UNIX operating systems:
  94.  
  95.     - generic BSD 4.3
  96.     - Sun OS 4.x
  97.     - Tahoe BSD 4.3
  98.     - Ultrix 3.x/4.x
  99.     - DYNIX
  100.  
  101. uC++ requires at least GNU C++ 2.2.  uC++ will NOT compile using other
  102. compilers. To run multiprocessor on a Sequent GNU C++ must use the Sequent
  103. assembler and loader.
  104.  
  105.  
  106. There is a Software-Practice and Experience paper about uC++ Version 2.0 in the
  107. Feb 1992 issue. Note, there have been many changes from version 2 to 3, and
  108. there will be more changes from version 3 to 4.
  109.  
  110. uC++ is being used daily to build highly concurrent access methods for
  111. persistent file structures (databases) here at Waterloo.
  112.  
  113.  
  114. What's coming in uC++ Version 4:
  115.  
  116.     - inline version of kernel
  117.     - visualization of concurrent execution
  118.     - multiprocessor ports to SGI, Encore
  119.     - uWait and uSignal as members of uCondition
  120.     - port to IBM 6000
  121.     - task priorities
  122.     - exception handling
  123.     - improve translator, make more robust
  124.     - time out on I/O calls
  125.  
  126. We hope to have some of this done by the end of the year.
  127.