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-sytaco.adb < prev    next >
Text File  |  1996-09-28  |  3KB  |  111 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --         A D A . S Y N C H R O N O U S _ T A S K _ C O N T R O L          --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.3 $                              --
  10. --                                                                          --
  11. --         Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved       --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26.  
  27. package body Ada.Synchronous_Task_Control is
  28.  
  29.    -------------------
  30.    -- Suspension_PO --
  31.    -------------------
  32.  
  33.    protected body Suspension_PO is
  34.  
  35.       ----------
  36.       -- Wait --
  37.       ----------
  38.  
  39.       entry Wait when Open is
  40.       begin
  41.          null;
  42.       end Wait;
  43.  
  44.       ---------------
  45.       -- Set_False --
  46.       ---------------
  47.  
  48.       procedure Set_False is
  49.       begin
  50.          Open := False;
  51.       end Set_False;
  52.  
  53.       --------------
  54.       -- Set_True --
  55.       --------------
  56.  
  57.       procedure Set_True is
  58.       begin
  59.          Open := True;
  60.       end Set_True;
  61.  
  62.       --------------
  63.       -- Get_Open --
  64.       --------------
  65.  
  66.       function Get_Open return Boolean is
  67.       begin
  68.          return Open;
  69.       end Get_Open;
  70.  
  71.    end Suspension_PO;
  72.  
  73.    --------------
  74.    -- Set_True --
  75.    --------------
  76.  
  77.    procedure Set_True (S : in out Suspension_Object) is
  78.    begin
  79.       S.Suspend.Set_True;
  80.    end Set_True;
  81.  
  82.    ---------------
  83.    -- Set_False --
  84.    ---------------
  85.  
  86.    procedure Set_False (S : in out Suspension_Object) is
  87.    begin
  88.       S.Suspend.Set_False;
  89.    end Set_False;
  90.  
  91.    -------------------
  92.    -- Current_State --
  93.    -------------------
  94.  
  95.    function Current_State (S : Suspension_Object) return Boolean is
  96.    begin
  97.       return S.Suspend.Get_Open;
  98.    end Current_State;
  99.  
  100.    ------------------------
  101.    -- Suspend_Until_True --
  102.    ------------------------
  103.  
  104.    procedure Suspend_Until_True (S : in out Suspension_Object) is
  105.    begin
  106.       S.Suspend.Wait;
  107.    end Suspend_Until_True;
  108.  
  109.  
  110. end Ada.Synchronous_Task_Control;
  111.