home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / ada / library / bd3 / bd3.pro < prev    next >
Text File  |  1989-04-30  |  3KB  |  58 lines

  1. -------- SIMTEL20 Ada Software Repository Prologue ------------
  2. -- Unit name    : Bank Demo 3 (BD3)
  3. -- Version      : 1.0
  4. -- Author       : Richard Conn
  5. --              : MACA
  6. --              : PO Drawer 100 - Building T148
  7. --              : White Sands Missile Range, NM  88002
  8. -- DDN Address  : rconn @ wsmr-simtel20.army.mil
  9. -- Copyright    : 
  10. -- Date created : 2/25/89 
  11. -- Release date : 4/30/89
  12. -- Last update  : 4/30/89
  13. -- Machine/System Compiled/Run on : SUN 3/260 with Verdix Ada
  14. --              : IBM PC/AT Clone with IntegrAda
  15. ---------------------------------------------------------------
  16. -- Keywords     : tasking demo, Ada education
  17. -- Abstract     :  
  18. --   Band Demo 3, or BD3 as the files and mainline procedure are named,
  19. -- is a demonstration program which illustrates how Ada and its tasking
  20. -- mechanism can be used to create a model of an activity in the real
  21. -- world.  BD3 is a model of a bank, where the bank contains several
  22. -- tellers, implemented as Ada tasks, and is used by customers, also
  23. -- implemented as Ada tasks.  The user at the console can monitor the
  24. -- status of the bank and the accounts of its customers and cause more
  25. -- customer tasks to execute, thereby increasing the level of activity
  26. -- at the bank.  The tasks all operate in parallel, so a variety of
  27. -- events can be thought of as happening at the same time, controlled by
  28. -- the Ada runtime system which is built into the Adda program by the
  29. -- Ada compilation system.
  30. ------------------ Revision history ---------------------------
  31. -- DATE         VERSION    AUTHOR                  HISTORY
  32. -- 2/25/89        1.0   Richard Conn            Initial Release to ASR
  33. ------------------ Distribution and Copyright -----------------
  34. -- This prologue must be included in all copies of this software.
  35. --
  36. -- This software is released to the Ada community.
  37. -- This software is released to the Public Domain (note:
  38. --   software released to the Public Domain is not subject
  39. --   to copyright protection).
  40. -- Restrictions on use or distribution:  NONE
  41. ------------------ Disclaimer ---------------------------------
  42. -- This software and its documentation are provided "AS IS" and
  43. -- without any expressed or implied warranties whatsoever.
  44. -- No warranties as to performance, merchantability, or fitness
  45. -- for a particular purpose exist.
  46. --
  47. -- Because of the diversity of conditions and hardware under
  48. -- which this software may be used, no warranty of fitness for
  49. -- a particular purpose is offered.  The user is advised to
  50. -- test the software thoroughly before relying on it.  The user
  51. -- must assume the entire risk and liability of using this
  52. -- software.
  53. --
  54. -- In no event shall any person or organization of people be
  55. -- held responsible for any direct, indirect, consequential
  56. -- or inconsequential damages or lost profits.
  57. -------------------END-PROLOGUE--------------------------------
  58.