2011-05-19 Tom de Vries <tom@codesourcery.com>
[official-gcc.git] / gcc / ada / s-taskin.adb
blobd2d29f9246e64274b9b3284532b9cc8d5d113510
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
4 -- --
5 -- S Y S T E M . T A S K I N G --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2010, Free Software Foundation, Inc. --
10 -- --
11 -- GNARL is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
17 -- --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
21 -- --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
26 -- --
27 -- GNARL was developed by the GNARL team at Florida State University. --
28 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
29 -- --
30 ------------------------------------------------------------------------------
32 pragma Polling (Off);
33 -- Turn off polling, we do not want ATC polling to take place during tasking
34 -- operations. It causes infinite loops and other problems.
36 with Ada.Unchecked_Deallocation;
38 with System.Task_Primitives.Operations;
39 with System.Storage_Elements;
41 package body System.Tasking is
43 package STPO renames System.Task_Primitives.Operations;
45 ----------------------------
46 -- Free_Entry_Names_Array --
47 ----------------------------
49 procedure Free_Entry_Names_Array (Obj : in out Entry_Names_Array) is
50 procedure Free_String is new
51 Ada.Unchecked_Deallocation (String, String_Access);
52 begin
53 for Index in Obj'Range loop
54 Free_String (Obj (Index));
55 end loop;
56 end Free_Entry_Names_Array;
58 ---------------------
59 -- Detect_Blocking --
60 ---------------------
62 function Detect_Blocking return Boolean is
63 GL_Detect_Blocking : Integer;
64 pragma Import (C, GL_Detect_Blocking, "__gl_detect_blocking");
65 -- Global variable exported by the binder generated file. A value equal
66 -- to 1 indicates that pragma Detect_Blocking is active, while 0 is used
67 -- for the pragma not being present.
69 begin
70 return GL_Detect_Blocking = 1;
71 end Detect_Blocking;
73 ----------
74 -- Self --
75 ----------
77 function Self return Task_Id renames STPO.Self;
79 ------------------
80 -- Storage_Size --
81 ------------------
83 function Storage_Size (T : Task_Id) return System.Parameters.Size_Type is
84 begin
85 return
86 System.Parameters.Size_Type
87 (T.Common.Compiler_Data.Pri_Stack_Info.Size);
88 end Storage_Size;
90 ---------------------
91 -- Initialize_ATCB --
92 ---------------------
94 procedure Initialize_ATCB
95 (Self_ID : Task_Id;
96 Task_Entry_Point : Task_Procedure_Access;
97 Task_Arg : System.Address;
98 Parent : Task_Id;
99 Elaborated : Access_Boolean;
100 Base_Priority : System.Any_Priority;
101 Base_CPU : System.Multiprocessors.CPU_Range;
102 Task_Info : System.Task_Info.Task_Info_Type;
103 Stack_Size : System.Parameters.Size_Type;
104 T : Task_Id;
105 Success : out Boolean)
107 begin
108 T.Common.State := Unactivated;
110 -- Initialize T.Common.LL
112 STPO.Initialize_TCB (T, Success);
114 if not Success then
115 return;
116 end if;
118 -- Wouldn't the following be better done using an assignment of an
119 -- aggregate so that we could be sure no components were forgotten???
121 T.Common.Parent := Parent;
122 T.Common.Base_Priority := Base_Priority;
123 T.Common.Base_CPU := Base_CPU;
124 T.Common.Current_Priority := 0;
125 T.Common.Protected_Action_Nesting := 0;
126 T.Common.Call := null;
127 T.Common.Task_Arg := Task_Arg;
128 T.Common.Task_Entry_Point := Task_Entry_Point;
129 T.Common.Activator := Self_ID;
130 T.Common.Wait_Count := 0;
131 T.Common.Elaborated := Elaborated;
132 T.Common.Activation_Failed := False;
133 T.Common.Task_Info := Task_Info;
134 T.Common.Global_Task_Lock_Nesting := 0;
135 T.Common.Fall_Back_Handler := null;
136 T.Common.Specific_Handler := null;
137 T.Common.Debug_Events := (others => False);
139 if T.Common.Parent = null then
141 -- For the environment task, the adjusted stack size is meaningless.
142 -- For example, an unspecified Stack_Size means that the stack size
143 -- is determined by the environment, or can grow dynamically. The
144 -- Stack_Checking algorithm therefore needs to use the requested
145 -- size, or 0 in case of an unknown size.
147 T.Common.Compiler_Data.Pri_Stack_Info.Size :=
148 Storage_Elements.Storage_Offset (Stack_Size);
150 else
151 T.Common.Compiler_Data.Pri_Stack_Info.Size :=
152 Storage_Elements.Storage_Offset
153 (Parameters.Adjust_Storage_Size (Stack_Size));
154 end if;
156 -- Link the task into the list of all tasks
158 T.Common.All_Tasks_Link := All_Tasks_List;
159 All_Tasks_List := T;
160 end Initialize_ATCB;
162 ----------------
163 -- Initialize --
164 ----------------
166 Main_Task_Image : constant String := "main_task";
167 -- Image of environment task
169 Main_Priority : Integer;
170 pragma Import (C, Main_Priority, "__gl_main_priority");
171 -- Priority for main task. Note that this is of type Integer, not Priority,
172 -- because we use the value -1 to indicate the default main priority, and
173 -- that is of course not in Priority'range.
175 Main_CPU : Integer;
176 pragma Import (C, Main_CPU, "__gl_main_cpu");
177 -- Affinity for main task. Note that this is of type Integer, not
178 -- CPU_Range, because we use the value -1 to indicate the unassigned
179 -- affinity, and that is of course not in CPU_Range'Range.
181 Initialized : Boolean := False;
182 -- Used to prevent multiple calls to Initialize
184 procedure Initialize is
185 T : Task_Id;
186 Base_Priority : Any_Priority;
187 Base_CPU : System.Multiprocessors.CPU_Range;
188 Success : Boolean;
190 begin
191 if Initialized then
192 return;
193 end if;
195 Initialized := True;
197 -- Initialize Environment Task
199 Base_Priority :=
200 (if Main_Priority = Unspecified_Priority
201 then Default_Priority
202 else Priority (Main_Priority));
204 Base_CPU :=
205 (if Main_CPU = Unspecified_CPU
206 then System.Multiprocessors.Not_A_Specific_CPU
207 else System.Multiprocessors.CPU_Range (Main_CPU));
209 T := STPO.New_ATCB (0);
210 Initialize_ATCB
211 (null, null, Null_Address, Null_Task, null, Base_Priority, Base_CPU,
212 Task_Info.Unspecified_Task_Info, 0, T, Success);
213 pragma Assert (Success);
215 STPO.Initialize (T);
216 STPO.Set_Priority (T, T.Common.Base_Priority);
217 T.Common.State := Runnable;
218 T.Common.Task_Image_Len := Main_Task_Image'Length;
219 T.Common.Task_Image (Main_Task_Image'Range) := Main_Task_Image;
221 -- Only initialize the first element since others are not relevant
222 -- in ravenscar mode. Rest of the initialization is done in Init_RTS.
224 T.Entry_Calls (1).Self := T;
225 end Initialize;
227 end System.Tasking;