home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / a-caldel.ads < prev    next >
Text File  |  1996-09-28  |  3KB  |  52 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                 GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS               --
  4. --                                                                          --
  5. --                   A D A . C A L E N D A R . D E L A Y S                  --
  6. --                                                                          --
  7. --                                  S p e c                                 --
  8. --                                                                          --
  9. --                             $Revision: 1.10 $                            --
  10. --                                                                          --
  11. --     Copyright (c) 1991,1992,1993,1994,1995 FSU, All Rights Reserved      --
  12. --                                                                          --
  13. -- GNARL is free software; you can redistribute it  and/or modify it  under --
  14. -- terms  of  the  GNU  Library General Public License  as published by the --
  15. -- Free Software  Foundation;  either version 2, or (at  your  option)  any --
  16. -- later  version.  GNARL is distributed  in the hope that  it will be use- --
  17. -- ful, but but WITHOUT ANY WARRANTY;  without even the implied warranty of --
  18. -- MERCHANTABILITY  or  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Gen- --
  19. -- eral Library Public License  for more details.  You should have received --
  20. -- a  copy of the GNU Library General Public License along with GNARL;  see --
  21. -- file COPYING.LIB.  If not,  write to the  Free Software Foundation,  675 --
  22. -- Mass Ave, Cambridge, MA 02139, USA.                                      --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. --  This package implements Calendar.Time delays using protected objects.
  27.  
  28. with System;
  29. with System.Task_Timer;
  30.  
  31. package Ada.Calendar.Delays is
  32.  
  33.    --  The Wait entries suspend the caller until the requested timeout has
  34.    --  expired.  The Delay_Block parameter provides the GNARL with working
  35.    --  storage.
  36.  
  37.    protected Delay_Object is
  38.       pragma Priority (System.Priority'Last);
  39.       entry Wait (T : Duration; D : access System.Task_Timer.Delay_Block);
  40.    end Delay_Object;
  41.  
  42.    protected Delay_Until_Object is
  43.       pragma Priority (System.Priority'Last);
  44.       entry Wait (T : Time; D : access System.Task_Timer.Delay_Block);
  45.    end Delay_Until_Object;
  46.  
  47.    procedure Delay_For (D : Duration);
  48.  
  49.    procedure Delay_Until (T : Time);
  50.  
  51. end Ada.Calendar.Delays;
  52.