home *** CD-ROM | disk | FTP | other *** search
/ Programmer's ROM - The Computer Language Library / programmersrom.iso / ada / misc / garbage.pro < prev    next >
Encoding:
Text File  |  1988-05-03  |  2.6 KB  |  56 lines

  1. -------- SIMTEL20 Ada Software Repository Prologue ------------
  2. --                                                           -*
  3. -- Unit name    : generic package Garbage_Collection
  4. -- Version      : 1.0
  5. -- Author       : Doug Bryan
  6. --              : Computer Systems Lab
  7. --              : Stanford University
  8. --              : Stanford, CA 94305
  9. -- DDN Address  : bryan@su-sierra
  10. -- Copyright    :
  11. -- Date created : 10 Aug 1985
  12. -- Release date : 16 Aug 1985
  13. -- Last update  : 16 Aug 1985
  14. -- Machine/System Compiled/Run on : DG MV/10000, Ada Dev Environ (ADE) 2.2
  15. ---------------------------------------------------------------
  16. --                                                           -*
  17. -- Keywords     : MEMORY, GARBAGE, COLLECTION
  18. ----------------:
  19. --
  20. -- Abstract     : This is a generic garbage collector.  It simply
  21. ----------------: maintains an internal linked list of items which
  22. --              : have been freed then reuses these items when more
  23. --              : are needed.
  24. --                                                           -*
  25. ------------------ Distribution and Copyright -----------------
  26. --                                                           -*
  27. -- This prologue must be included in all copies of this software.
  28. --
  29. -- This software is copyright by the author.
  30. --
  31. -- This software is released to the Ada community.
  32. -- This software is released to the Public Domain (note:
  33. --   software released to the Public Domain is not subject
  34. --   to copyright protection).
  35. -- Restrictions on use or distribution:  NONE
  36. --                                                           -*
  37. ------------------ Disclaimer ---------------------------------
  38. --                                                           -*
  39. -- This software and its documentation are provided "AS IS" and
  40. -- without any expressed or implied warranties whatsoever.
  41. -- No warranties as to performance, merchantability, or fitness
  42. -- for a particular purpose exist.
  43. --
  44. -- Because of the diversity of conditions and hardware under
  45. -- which this software may be used, no warranty of fitness for
  46. -- a particular purpose is offered.  The user is advised to
  47. -- test the software thoroughly before relying on it.  The user
  48. -- must assume the entire risk and liability of using this
  49. -- software.
  50. --
  51. -- In no event shall any person or organization of people be
  52. -- held responsible for any direct, indirect, consequential
  53. -- or inconsequential damages or lost profits.
  54. --                                                           -*
  55. -------------------END-PROLOGUE--------------------------------
  56.