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-retide.adb < prev    next >
Text File  |  1996-09-28  |  4KB  |  93 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                 GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS               --
  4. --                                                                          --
  5. --                   A D A . R E A L _ T I M E . D E L A Y S                --
  6. --                                                                          --
  7. --                                  B o d y                                 --
  8. --                                                                          --
  9. --                             $Revision: 1.15 $                            --
  10. --                                                                          --
  11. --       Copyright (c) 1991,1992,1993,1994, 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. with System;
  27. --  Used for, Priority
  28.  
  29. with System.Task_Timer;
  30. --  Used for, Timer
  31.  
  32. with System.Task_Primitives;
  33. --  Used for, Cond_Timed_Wait
  34. --            Lock
  35. --            Condition_Variable
  36. --            Initialize_Lock
  37. --            Initialize_Cond
  38. --            Write_Lock
  39. --            Unlock
  40.  
  41. with System.Task_Clock;
  42. --  Used for, Stimespec
  43.  
  44. with Ada.Real_Time.Conv;
  45. --  Used for, Time_To_Stimespec;
  46.  
  47. package body Ada.Real_Time.Delays is
  48.  
  49.    ------------------
  50.    -- Delay_Object --
  51.    ------------------
  52.  
  53.    protected body Delay_Object is
  54.       entry Wait (TS : Time_Span; D : access System.Task_Timer.Delay_Block)
  55.         when True is
  56.  
  57.       begin
  58.          requeue System.Task_Timer.Timer.Enqueue_Time_Span with abort;
  59.       end Wait;
  60.    end Delay_Object;
  61.  
  62.    ------------------------
  63.    -- Delay_Until_Object --
  64.    ------------------------
  65.  
  66.    protected body Delay_Until_Object is
  67.       entry Wait (T : Time; D : access System.Task_Timer.Delay_Block)
  68.    when True is
  69.       begin
  70.          requeue System.Task_Timer.Timer.Enqueue_Real_Time with abort;
  71.       end Wait;
  72.    end Delay_Until_Object;
  73.  
  74.    -----------------
  75.    -- Delay_Until --
  76.    -----------------
  77.  
  78.    procedure Delay_Until (T : Time) is
  79.       L : System.Task_Primitives.Lock;
  80.       C : System.Task_Primitives.Condition_Variable;
  81.       Error, Result : Boolean;
  82.    begin
  83.       Task_Primitives.Initialize_Lock (System.Priority'Last, L);
  84.       Task_Primitives.Initialize_Cond (C);
  85.  
  86.       Task_Primitives.Write_Lock (L, Error);
  87.       Task_Primitives.Cond_Timed_Wait
  88.         (C, L, Ada.Real_Time.Conv.Time_To_Stimespec (T), Result);
  89.       Task_Primitives.Unlock (L);
  90.    end Delay_Until;
  91.  
  92. end Ada.Real_Time.Delays;
  93.