1 ------------------------------------------------------------------------------
3 -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS --
5 -- S Y S T E M . T A S K _ P R I M I T I V E S . O P E R A T I O N S --
9 -- Copyright (C) 1992-2004, Free Software Foundation, Inc. --
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 2, or (at your option) any later ver- --
14 -- sion. GNARL 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. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNARL; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
29 -- GNARL was developed by the GNARL team at Florida State University. --
30 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
32 ------------------------------------------------------------------------------
34 -- This is a no tasking version of this package
36 -- This package contains all the GNULL primitives that interface directly
37 -- with the underlying OS.
40 -- Turn off polling, we do not want ATC polling to take place during
41 -- tasking operations. It causes infinite loops and other problems.
44 -- used for Ada_Task_Control_Block
47 with System
.Error_Reporting
;
50 package body System
.Task_Primitives
.Operations
is
53 use System
.Parameters
;
55 pragma Warnings
(Off
);
56 -- Turn off warnings since so many unreferenced parameters
59 -- Comment required here ???
65 procedure Abort_Task
(T
: Task_Id
) is
76 function Check_Exit
(Self_ID
: ST
.Task_Id
) return Boolean is
85 function Check_No_Locks
(Self_ID
: ST
.Task_Id
) return Boolean is
90 ----------------------
91 -- Environment_Task --
92 ----------------------
94 function Environment_Task
return Task_Id
is
103 procedure Create_Task
105 Wrapper
: System
.Address
;
106 Stack_Size
: System
.Parameters
.Size_Type
;
107 Priority
: System
.Any_Priority
;
108 Succeeded
: out Boolean)
118 procedure Enter_Task
(Self_ID
: Task_Id
) is
127 procedure Exit_Task
is
136 procedure Finalize_Lock
(L
: access Lock
) is
141 procedure Finalize_Lock
(L
: access RTS_Lock
) is
150 procedure Finalize_TCB
(T
: Task_Id
) is
159 function Get_Priority
(T
: Task_Id
) return System
.Any_Priority
is
168 function Get_Thread_Id
(T
: ST
.Task_Id
) return OSI
.Thread_Id
is
170 return OSI
.Thread_Id
(T
.Common
.LL
.Thread
);
177 procedure Initialize
(Environment_Task
: Task_Id
) is
182 ---------------------
183 -- Initialize_Lock --
184 ---------------------
186 procedure Initialize_Lock
187 (Prio
: System
.Any_Priority
;
194 procedure Initialize_Lock
(L
: access RTS_Lock
; Level
: Lock_Level
) is
203 procedure Initialize_TCB
(Self_ID
: Task_Id
; Succeeded
: out Boolean) is
212 function Is_Valid_Task
return Boolean is
221 procedure Lock_RTS
is
226 ---------------------
227 -- Monotonic_Clock --
228 ---------------------
230 function Monotonic_Clock
return Duration is
239 function New_ATCB
(Entry_Num
: Task_Entry_Index
) return Task_Id
is
241 return new Ada_Task_Control_Block
(Entry_Num
);
248 procedure Read_Lock
(L
: access Lock
; Ceiling_Violation
: out Boolean) is
250 Ceiling_Violation
:= False;
253 -----------------------------
254 -- Register_Foreign_Thread --
255 -----------------------------
257 function Register_Foreign_Thread
return Task_Id
is
260 end Register_Foreign_Thread
;
268 Thread_Self
: OSI
.Thread_Id
) return Boolean
278 function RT_Resolution
return Duration is
287 function Self
return Task_Id
is
296 procedure Set_Priority
298 Prio
: System
.Any_Priority
;
299 Loss_Of_Inheritance
: Boolean := False)
309 procedure Sleep
(Self_ID
: Task_Id
; Reason
: System
.Tasking
.Task_States
) is
318 procedure Stack_Guard
(T
: ST
.Task_Id
; On
: Boolean) is
327 function Suspend_Task
329 Thread_Self
: OSI
.Thread_Id
) return Boolean
339 procedure Timed_Delay
342 Mode
: ST
.Delay_Modes
)
352 procedure Timed_Sleep
355 Mode
: ST
.Delay_Modes
;
356 Reason
: System
.Tasking
.Task_States
;
357 Timedout
: out Boolean;
358 Yielded
: out Boolean)
369 procedure Unlock
(L
: access Lock
) is
374 procedure Unlock
(L
: access RTS_Lock
; Global_Lock
: Boolean := False) is
379 procedure Unlock
(T
: Task_Id
) is
388 procedure Unlock_RTS
is
396 procedure Wakeup
(T
: Task_Id
; Reason
: System
.Tasking
.Task_States
) is
405 procedure Write_Lock
(L
: access Lock
; Ceiling_Violation
: out Boolean) is
407 Ceiling_Violation
:= False;
411 (L
: access RTS_Lock
;
412 Global_Lock
: Boolean := False)
418 procedure Write_Lock
(T
: Task_Id
) is
427 procedure Yield
(Do_Yield
: Boolean := True) is
433 -- Can't raise an exception because target independent packages try to
434 -- do an Abort_Defer, which gets a memory fault.
437 System
.Error_Reporting
.Shutdown
438 ("Tasking not implemented on this configuration");
439 end System
.Task_Primitives
.Operations
;