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 / s-tasabo.adb < prev    next >
Text File  |  1996-09-28  |  4KB  |  108 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS                --
  4. --                                                                          --
  5. --              S Y S T E M . T A S K I N G . A B O R T I O N               --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.15 $                             --
  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. with System.Tasking.Utilities;
  27. --  Used for, Utilities.All_Tasks_L,
  28. --            Utilities.All_Tasks_List
  29. --            Utilities.Abort_To_Level,
  30. --            Utilities.Abort_Dependents
  31.  
  32. with System.Tasking.Initialization;
  33. --  Used for, Defer_Abortion
  34. --            Undefer_Abortion
  35. --            Change_Base_Priority
  36.  
  37. with System.Task_Primitives; use System.Task_Primitives;
  38.  
  39. package body System.Tasking.Abortion is
  40.  
  41.    --------------------------
  42.    -- Change_Base_Priority --
  43.    --------------------------
  44.  
  45.    procedure Change_Base_Priority (T : Task_ID) renames
  46.      System.Tasking.Initialization.Change_Base_Priority;
  47.  
  48.    --------------------
  49.    -- Defer_Abortion --
  50.    --------------------
  51.  
  52.    procedure Defer_Abortion renames
  53.      System.Tasking.Initialization.Defer_Abortion;
  54.  
  55.    ----------------------
  56.    -- Undefer_Abortion --
  57.    ----------------------
  58.  
  59.    procedure Undefer_Abortion renames
  60.      System.Tasking.Initialization.Undefer_Abortion;
  61.  
  62.    -----------------
  63.    -- Abort_Tasks --
  64.    -----------------
  65.  
  66.    --  Called to initiate abortion, however, the actual abortion
  67.    --  is done by abortee by means of Abort_Handler
  68.  
  69.    procedure Abort_Tasks (Tasks : Task_List) is
  70.       Abortee               : Task_ID;
  71.       Aborter               : Task_ID;
  72.       Activator             : Task_ID;
  73.       TAS_Result            : Boolean;
  74.       Old_Pending_ATC_Level : ATC_Level_Base;
  75.  
  76.    begin
  77.       Defer_Abortion;
  78.  
  79.       --  Begin non-abortable section
  80.  
  81.       Aborter := Self;
  82.  
  83.       for J in Tasks'Range loop
  84.  
  85.          Abortee := Tasks (J);
  86.  
  87.          if Abortee.Stage = Created then
  88.             Utilities.Complete (Abortee);
  89.             Abortee.Stage := Terminated;
  90.             --  Task aborted before activation is safe to complete
  91.             --  Mark This task to be terminated.
  92.          else
  93.             Abortee.Accepting := Not_Accepting;
  94.             Utilities.Complete_on_Sync_Point (Abortee);
  95.             Utilities.Abort_To_Level (Abortee, 0);
  96.             --  Process abortion of child tasks
  97.             Utilities.Abort_Dependents (Abortee);
  98.          end if;
  99.  
  100.       end loop;
  101.  
  102.       --  End non-abortable section
  103.  
  104.       Undefer_Abortion;
  105.    end Abort_Tasks;
  106.  
  107. end System.Tasking.Abortion;
  108.