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

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --              A D A . T A S K _ I D E N T I F I C A T I O N               --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.7 $                              --
  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. with System.Address_Image;
  27. with System.Tasking.Abortion;
  28. with System.Tasking.Stages;
  29. with System.Tasking.Rendezvous;
  30.  
  31. with Unchecked_Conversion;
  32.  
  33. package body Ada.Task_Identification is
  34.  
  35.    ---------
  36.    -- "=" --
  37.    ---------
  38.  
  39.    function  "=" (Left, Right : Task_Id) return Boolean is
  40.    begin
  41.       return System.Tasking."=" (Convert_Ids (Left), Convert_Ids (Right));
  42.    end "=";
  43.  
  44.    -----------------
  45.    -- Abort_Task --
  46.    ----------------
  47.  
  48.    procedure Abort_Task (T : in out Task_Id) is
  49.    begin
  50.       System.Tasking.Abortion.Abort_Tasks
  51.         (System.Tasking.Task_List'(1 => Convert_Ids (T)));
  52.    end Abort_Task;
  53.  
  54.    ------------------
  55.    -- Current_Task --
  56.    ------------------
  57.  
  58.    function Current_Task return Task_Id is
  59.    begin
  60.       return Convert_Ids (System.Tasking.Self);
  61.    end Current_Task;
  62.  
  63.    -----------
  64.    -- Image --
  65.    -----------
  66.  
  67.    function Image (T : Task_Id) return String is
  68.  
  69.       function To_Address is new
  70.         Unchecked_Conversion (Task_Id, System.Address);
  71.  
  72.    begin
  73.       return System.Address_Image (To_Address (T));
  74.    end Image;
  75.  
  76.    -----------------
  77.    -- Is_Callable --
  78.    -----------------
  79.  
  80.    function Is_Callable (T : Task_Id) return Boolean is
  81.    begin
  82.       return System.Tasking.Rendezvous.Callable (Convert_Ids (T));
  83.    end Is_Callable;
  84.  
  85.    -------------------
  86.    -- Is_Terminated --
  87.    -------------------
  88.  
  89.    function Is_Terminated (T : Task_Id) return Boolean is
  90.    begin
  91.       return
  92.         System.Tasking.Stages.Terminated (Convert_Ids (T));
  93.    end Is_Terminated;
  94.  
  95. end Ada.Task_Identification;
  96.