1 ------------------------------------------------------------------------------
3 -- GNAT 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-2012, 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 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. --
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. --
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/>. --
27 -- GNARL was developed by the GNARL team at Florida State University. --
28 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
30 ------------------------------------------------------------------------------
32 -- This is a NT (native) version of this package
34 -- This package contains all the GNULL primitives that interface directly with
38 -- Turn off polling, we do not want ATC polling to take place during tasking
39 -- operations. It causes infinite loops and other problems.
42 with Interfaces
.C
.Strings
;
44 with System
.Float_Control
;
45 with System
.Interrupt_Management
;
46 with System
.Multiprocessors
;
47 with System
.OS_Primitives
;
48 with System
.Task_Info
;
49 with System
.Tasking
.Debug
;
50 with System
.Win32
.Ext
;
52 with System
.Soft_Links
;
53 -- We use System.Soft_Links instead of System.Tasking.Initialization because
54 -- the later is a higher level package that we shouldn't depend on. For
55 -- example when using the restricted run time, it is replaced by
56 -- System.Tasking.Restricted.Stages.
58 package body System
.Task_Primitives
.Operations
is
60 package SSL
renames System
.Soft_Links
;
63 use Interfaces
.C
.Strings
;
64 use System
.OS_Interface
;
65 use System
.OS_Primitives
;
66 use System
.Parameters
;
69 use System
.Tasking
.Debug
;
73 pragma Link_With
("-Xlinker --stack=0x200000,0x1000");
74 -- Change the default stack size (2 MB) for tasking programs on Windows.
75 -- This allows about 1000 tasks running at the same time. Note that
76 -- we set the stack size for non tasking programs on System unit.
77 -- Also note that under Windows XP, we use a Windows XP extension to
78 -- specify the stack size on a per task basis, as done under other OSes.
84 procedure InitializeCriticalSection
(pCriticalSection
: access RTS_Lock
);
85 procedure InitializeCriticalSection
86 (pCriticalSection
: access CRITICAL_SECTION
);
88 (Stdcall
, InitializeCriticalSection
, "InitializeCriticalSection");
90 procedure EnterCriticalSection
(pCriticalSection
: access RTS_Lock
);
91 procedure EnterCriticalSection
92 (pCriticalSection
: access CRITICAL_SECTION
);
93 pragma Import
(Stdcall
, EnterCriticalSection
, "EnterCriticalSection");
95 procedure LeaveCriticalSection
(pCriticalSection
: access RTS_Lock
);
96 procedure LeaveCriticalSection
(pCriticalSection
: access CRITICAL_SECTION
);
97 pragma Import
(Stdcall
, LeaveCriticalSection
, "LeaveCriticalSection");
99 procedure DeleteCriticalSection
(pCriticalSection
: access RTS_Lock
);
100 procedure DeleteCriticalSection
101 (pCriticalSection
: access CRITICAL_SECTION
);
102 pragma Import
(Stdcall
, DeleteCriticalSection
, "DeleteCriticalSection");
108 Environment_Task_Id
: Task_Id
;
109 -- A variable to hold Task_Id for the environment task
111 Single_RTS_Lock
: aliased RTS_Lock
;
112 -- This is a lock to allow only one thread of control in the RTS at
113 -- a time; it is used to execute in mutual exclusion from all other tasks.
114 -- Used mainly in Single_Lock mode, but also to protect All_Tasks_List
116 Time_Slice_Val
: Integer;
117 pragma Import
(C
, Time_Slice_Val
, "__gl_time_slice_val");
119 Dispatching_Policy
: Character;
120 pragma Import
(C
, Dispatching_Policy
, "__gl_task_dispatching_policy");
122 function Get_Policy
(Prio
: System
.Any_Priority
) return Character;
123 pragma Import
(C
, Get_Policy
, "__gnat_get_specific_dispatching");
124 -- Get priority specific dispatching policy
126 Foreign_Task_Elaborated
: aliased Boolean := True;
127 -- Used to identified fake tasks (i.e., non-Ada Threads)
129 Null_Thread_Id
: constant Thread_Id
:= 0;
130 -- Constant to indicate that the thread identifier has not yet been
133 ------------------------------------
134 -- The thread local storage index --
135 ------------------------------------
138 pragma Export
(Ada
, TlsIndex
);
139 -- To ensure that this variable won't be local to this package, since
140 -- in some cases, inlining forces this variable to be global anyway.
148 function Is_Valid_Task
return Boolean;
149 pragma Inline
(Is_Valid_Task
);
150 -- Does executing thread have a TCB?
152 procedure Set
(Self_Id
: Task_Id
);
154 -- Set the self id for the current task
158 package body Specific
is
160 function Is_Valid_Task
return Boolean is
162 return TlsGetValue
(TlsIndex
) /= System
.Null_Address
;
165 procedure Set
(Self_Id
: Task_Id
) is
168 Succeeded
:= TlsSetValue
(TlsIndex
, To_Address
(Self_Id
));
169 pragma Assert
(Succeeded
= Win32
.TRUE);
174 ----------------------------------
175 -- ATCB allocation/deallocation --
176 ----------------------------------
178 package body ATCB_Allocation
is separate;
179 -- The body of this package is shared across several targets
181 ---------------------------------
182 -- Support for foreign threads --
183 ---------------------------------
185 function Register_Foreign_Thread
(Thread
: Thread_Id
) return Task_Id
;
186 -- Allocate and Initialize a new ATCB for the current Thread
188 function Register_Foreign_Thread
189 (Thread
: Thread_Id
) return Task_Id
is separate;
191 ----------------------------------
192 -- Condition Variable Functions --
193 ----------------------------------
195 procedure Initialize_Cond
(Cond
: not null access Condition_Variable
);
196 -- Initialize given condition variable Cond
198 procedure Finalize_Cond
(Cond
: not null access Condition_Variable
);
199 -- Finalize given condition variable Cond
201 procedure Cond_Signal
(Cond
: not null access Condition_Variable
);
202 -- Signal condition variable Cond
205 (Cond
: not null access Condition_Variable
;
206 L
: not null access RTS_Lock
);
207 -- Wait on conditional variable Cond, using lock L
209 procedure Cond_Timed_Wait
210 (Cond
: not null access Condition_Variable
;
211 L
: not null access RTS_Lock
;
213 Timed_Out
: out Boolean;
214 Status
: out Integer);
215 -- Do timed wait on condition variable Cond using lock L. The duration
216 -- of the timed wait is given by Rel_Time. When the condition is
217 -- signalled, Timed_Out shows whether or not a time out occurred.
218 -- Status is only valid if Timed_Out is False, in which case it
219 -- shows whether Cond_Timed_Wait completed successfully.
221 ---------------------
222 -- Initialize_Cond --
223 ---------------------
225 procedure Initialize_Cond
(Cond
: not null access Condition_Variable
) is
228 hEvent
:= CreateEvent
(null, Win32
.TRUE, Win32
.FALSE, Null_Ptr
);
229 pragma Assert
(hEvent
/= 0);
230 Cond
.all := Condition_Variable
(hEvent
);
237 -- No such problem here, DosCloseEventSem has been derived.
238 -- What does such refer to in above comment???
240 procedure Finalize_Cond
(Cond
: not null access Condition_Variable
) is
243 Result
:= CloseHandle
(HANDLE
(Cond
.all));
244 pragma Assert
(Result
= Win32
.TRUE);
251 procedure Cond_Signal
(Cond
: not null access Condition_Variable
) is
254 Result
:= SetEvent
(HANDLE
(Cond
.all));
255 pragma Assert
(Result
= Win32
.TRUE);
262 -- Pre-condition: Cond is posted
265 -- Post-condition: Cond is posted
269 (Cond
: not null access Condition_Variable
;
270 L
: not null access RTS_Lock
)
276 -- Must reset Cond BEFORE L is unlocked
278 Result_Bool
:= ResetEvent
(HANDLE
(Cond
.all));
279 pragma Assert
(Result_Bool
= Win32
.TRUE);
280 Unlock
(L
, Global_Lock
=> True);
282 -- No problem if we are interrupted here: if the condition is signaled,
283 -- WaitForSingleObject will simply not block
285 Result
:= WaitForSingleObject
(HANDLE
(Cond
.all), Wait_Infinite
);
286 pragma Assert
(Result
= 0);
288 Write_Lock
(L
, Global_Lock
=> True);
291 ---------------------
292 -- Cond_Timed_Wait --
293 ---------------------
295 -- Pre-condition: Cond is posted
298 -- Post-condition: Cond is posted
301 procedure Cond_Timed_Wait
302 (Cond
: not null access Condition_Variable
;
303 L
: not null access RTS_Lock
;
305 Timed_Out
: out Boolean;
306 Status
: out Integer)
308 Time_Out_Max
: constant DWORD
:= 16#FFFF0000#
;
309 -- NT 4 can't handle excessive timeout values (e.g. DWORD'Last - 1)
316 -- Must reset Cond BEFORE L is unlocked
318 Result
:= ResetEvent
(HANDLE
(Cond
.all));
319 pragma Assert
(Result
= Win32
.TRUE);
320 Unlock
(L
, Global_Lock
=> True);
322 -- No problem if we are interrupted here: if the condition is signaled,
323 -- WaitForSingleObject will simply not block.
325 if Rel_Time
<= 0.0 then
331 (if Rel_Time
>= Duration (Time_Out_Max
) / 1000
333 else DWORD
(Rel_Time
* 1000));
335 Wait_Result
:= WaitForSingleObject
(HANDLE
(Cond
.all), Time_Out
);
337 if Wait_Result
= WAIT_TIMEOUT
then
345 Write_Lock
(L
, Global_Lock
=> True);
347 -- Ensure post-condition
350 Result
:= SetEvent
(HANDLE
(Cond
.all));
351 pragma Assert
(Result
= Win32
.TRUE);
354 Status
:= Integer (Wait_Result
);
361 -- The underlying thread system sets a guard page at the bottom of a thread
362 -- stack, so nothing is needed.
363 -- ??? Check the comment above
365 procedure Stack_Guard
(T
: ST
.Task_Id
; On
: Boolean) is
366 pragma Unreferenced
(T
, On
);
375 function Get_Thread_Id
(T
: ST
.Task_Id
) return OSI
.Thread_Id
is
377 return T
.Common
.LL
.Thread
;
384 function Self
return Task_Id
is
385 Self_Id
: constant Task_Id
:= To_Task_Id
(TlsGetValue
(TlsIndex
));
387 if Self_Id
= null then
388 return Register_Foreign_Thread
(GetCurrentThread
);
394 ---------------------
395 -- Initialize_Lock --
396 ---------------------
398 -- Note: mutexes and cond_variables needed per-task basis are initialized
399 -- in Initialize_TCB and the Storage_Error is handled. Other mutexes (such
400 -- as RTS_Lock, Memory_Lock...) used in the RTS is initialized before any
401 -- status change of RTS. Therefore raising Storage_Error in the following
402 -- routines should be able to be handled safely.
404 procedure Initialize_Lock
405 (Prio
: System
.Any_Priority
;
406 L
: not null access Lock
)
409 InitializeCriticalSection
(L
.Mutex
'Access);
410 L
.Owner_Priority
:= 0;
414 procedure Initialize_Lock
415 (L
: not null access RTS_Lock
; Level
: Lock_Level
)
417 pragma Unreferenced
(Level
);
419 InitializeCriticalSection
(L
);
426 procedure Finalize_Lock
(L
: not null access Lock
) is
428 DeleteCriticalSection
(L
.Mutex
'Access);
431 procedure Finalize_Lock
(L
: not null access RTS_Lock
) is
433 DeleteCriticalSection
(L
);
441 (L
: not null access Lock
; Ceiling_Violation
: out Boolean) is
443 L
.Owner_Priority
:= Get_Priority
(Self
);
445 if L
.Priority
< L
.Owner_Priority
then
446 Ceiling_Violation
:= True;
450 EnterCriticalSection
(L
.Mutex
'Access);
452 Ceiling_Violation
:= False;
456 (L
: not null access RTS_Lock
;
457 Global_Lock
: Boolean := False)
460 if not Single_Lock
or else Global_Lock
then
461 EnterCriticalSection
(L
);
465 procedure Write_Lock
(T
: Task_Id
) is
467 if not Single_Lock
then
468 EnterCriticalSection
(T
.Common
.LL
.L
'Access);
477 (L
: not null access Lock
; Ceiling_Violation
: out Boolean) is
479 Write_Lock
(L
, Ceiling_Violation
);
486 procedure Unlock
(L
: not null access Lock
) is
488 LeaveCriticalSection
(L
.Mutex
'Access);
492 (L
: not null access RTS_Lock
; Global_Lock
: Boolean := False) is
494 if not Single_Lock
or else Global_Lock
then
495 LeaveCriticalSection
(L
);
499 procedure Unlock
(T
: Task_Id
) is
501 if not Single_Lock
then
502 LeaveCriticalSection
(T
.Common
.LL
.L
'Access);
510 -- Dynamic priority ceilings are not supported by the underlying system
512 procedure Set_Ceiling
513 (L
: not null access Lock
;
514 Prio
: System
.Any_Priority
)
516 pragma Unreferenced
(L
, Prio
);
527 Reason
: System
.Tasking
.Task_States
)
529 pragma Unreferenced
(Reason
);
532 pragma Assert
(Self_ID
= Self
);
535 Cond_Wait
(Self_ID
.Common
.LL
.CV
'Access, Single_RTS_Lock
'Access);
537 Cond_Wait
(Self_ID
.Common
.LL
.CV
'Access, Self_ID
.Common
.LL
.L
'Access);
540 if Self_ID
.Deferral_Level
= 0
541 and then Self_ID
.Pending_ATC_Level
< Self_ID
.ATC_Nesting_Level
544 raise Standard
'Abort_Signal;
552 -- This is for use within the run-time system, so abort is assumed to be
553 -- already deferred, and the caller should be holding its own ATCB lock.
555 procedure Timed_Sleep
558 Mode
: ST
.Delay_Modes
;
559 Reason
: System
.Tasking
.Task_States
;
560 Timedout
: out Boolean;
561 Yielded
: out Boolean)
563 pragma Unreferenced
(Reason
);
564 Check_Time
: Duration := Monotonic_Clock
;
569 pragma Unreferenced
(Result
);
571 Local_Timedout
: Boolean;
577 if Mode
= Relative
then
579 Abs_Time
:= Duration'Min (Time
, Max_Sensible_Delay
) + Check_Time
;
581 Rel_Time
:= Time
- Check_Time
;
585 if Rel_Time
> 0.0 then
587 exit when Self_ID
.Pending_ATC_Level
< Self_ID
.ATC_Nesting_Level
;
591 (Self_ID
.Common
.LL
.CV
'Access,
592 Single_RTS_Lock
'Access,
593 Rel_Time
, Local_Timedout
, Result
);
596 (Self_ID
.Common
.LL
.CV
'Access,
597 Self_ID
.Common
.LL
.L
'Access,
598 Rel_Time
, Local_Timedout
, Result
);
601 Check_Time
:= Monotonic_Clock
;
602 exit when Abs_Time
<= Check_Time
;
604 if not Local_Timedout
then
606 -- Somebody may have called Wakeup for us
612 Rel_Time
:= Abs_Time
- Check_Time
;
621 procedure Timed_Delay
624 Mode
: ST
.Delay_Modes
)
626 Check_Time
: Duration := Monotonic_Clock
;
632 pragma Unreferenced
(Timedout
, Result
);
639 Write_Lock
(Self_ID
);
641 if Mode
= Relative
then
643 Abs_Time
:= Time
+ Check_Time
;
645 Rel_Time
:= Time
- Check_Time
;
649 if Rel_Time
> 0.0 then
650 Self_ID
.Common
.State
:= Delay_Sleep
;
653 exit when Self_ID
.Pending_ATC_Level
< Self_ID
.ATC_Nesting_Level
;
657 (Self_ID
.Common
.LL
.CV
'Access,
658 Single_RTS_Lock
'Access,
659 Rel_Time
, Timedout
, Result
);
662 (Self_ID
.Common
.LL
.CV
'Access,
663 Self_ID
.Common
.LL
.L
'Access,
664 Rel_Time
, Timedout
, Result
);
667 Check_Time
:= Monotonic_Clock
;
668 exit when Abs_Time
<= Check_Time
;
670 Rel_Time
:= Abs_Time
- Check_Time
;
673 Self_ID
.Common
.State
:= Runnable
;
689 procedure Wakeup
(T
: Task_Id
; Reason
: System
.Tasking
.Task_States
) is
690 pragma Unreferenced
(Reason
);
692 Cond_Signal
(T
.Common
.LL
.CV
'Access);
699 procedure Yield
(Do_Yield
: Boolean := True) is
701 -- Note: in a previous implementation if Do_Yield was False, then we
702 -- introduced a delay of 1 millisecond in an attempt to get closer to
703 -- annex D semantics, and in particular to make ACATS CXD8002 pass. But
704 -- this change introduced a huge performance regression evaluating the
705 -- Count attribute. So we decided to remove this processing.
707 -- Moreover, CXD8002 appears to pass on Windows (although we do not
708 -- guarantee full Annex D compliance on Windows in any case).
719 procedure Set_Priority
721 Prio
: System
.Any_Priority
;
722 Loss_Of_Inheritance
: Boolean := False)
725 pragma Unreferenced
(Loss_Of_Inheritance
);
731 Interfaces
.C
.int
(Underlying_Priorities
(Prio
)));
732 pragma Assert
(Res
= Win32
.TRUE);
734 -- Note: Annex D (RM D.2.3(5/2)) requires the task to be placed at the
735 -- head of its priority queue when decreasing its priority as a result
736 -- of a loss of inherited priority. This is not the case, but we
737 -- consider it an acceptable variation (RM 1.1.3(6)), given this is
738 -- the built-in behavior offered by the Windows operating system.
740 -- In older versions we attempted to better approximate the Annex D
741 -- required behavior, but this simulation was not entirely accurate,
742 -- and it seems better to live with the standard Windows semantics.
744 T
.Common
.Current_Priority
:= Prio
;
751 function Get_Priority
(T
: Task_Id
) return System
.Any_Priority
is
753 return T
.Common
.Current_Priority
;
760 -- There were two paths were we needed to call Enter_Task :
761 -- 1) from System.Task_Primitives.Operations.Initialize
762 -- 2) from System.Tasking.Stages.Task_Wrapper
764 -- The thread initialisation has to be done only for the first case
766 -- This is because the GetCurrentThread NT call does not return the real
767 -- thread handler but only a "pseudo" one. It is not possible to release
768 -- the thread handle and free the system resources from this "pseudo"
769 -- handle. So we really want to keep the real thread handle set in
770 -- System.Task_Primitives.Operations.Create_Task during thread creation.
772 procedure Enter_Task
(Self_ID
: Task_Id
) is
773 procedure Get_Stack_Bounds
(Base
: Address
; Limit
: Address
);
774 pragma Import
(C
, Get_Stack_Bounds
, "__gnat_get_stack_bounds");
775 -- Get stack boundaries
777 Specific
.Set
(Self_ID
);
779 -- Properly initializes the FPU for x86 systems
781 System
.Float_Control
.Reset
;
783 if Self_ID
.Common
.Task_Info
/= null
785 Self_ID
.Common
.Task_Info
.CPU
>= CPU_Number
(Number_Of_Processors
)
787 raise Invalid_CPU_Number
;
790 Self_ID
.Common
.LL
.Thread_Id
:= GetCurrentThreadId
;
793 (Self_ID
.Common
.Compiler_Data
.Pri_Stack_Info
.Base
'Address,
794 Self_ID
.Common
.Compiler_Data
.Pri_Stack_Info
.Limit
'Address);
801 function Is_Valid_Task
return Boolean renames Specific
.Is_Valid_Task
;
803 -----------------------------
804 -- Register_Foreign_Thread --
805 -----------------------------
807 function Register_Foreign_Thread
return Task_Id
is
809 if Is_Valid_Task
then
812 return Register_Foreign_Thread
(GetCurrentThread
);
814 end Register_Foreign_Thread
;
820 procedure Initialize_TCB
(Self_ID
: Task_Id
; Succeeded
: out Boolean) is
822 -- Initialize thread ID to 0, this is needed to detect threads that
823 -- are not yet activated.
825 Self_ID
.Common
.LL
.Thread
:= Null_Thread_Id
;
827 Initialize_Cond
(Self_ID
.Common
.LL
.CV
'Access);
829 if not Single_Lock
then
830 Initialize_Lock
(Self_ID
.Common
.LL
.L
'Access, ATCB_Level
);
840 procedure Create_Task
842 Wrapper
: System
.Address
;
843 Stack_Size
: System
.Parameters
.Size_Type
;
844 Priority
: System
.Any_Priority
;
845 Succeeded
: out Boolean)
847 Initial_Stack_Size
: constant := 1024;
848 -- We set the initial stack size to 1024. On Windows version prior to XP
849 -- there is no way to fix a task stack size. Only the initial stack size
850 -- can be set, the operating system will raise the task stack size if
853 function Is_Windows_XP
return Integer;
854 pragma Import
(C
, Is_Windows_XP
, "__gnat_is_windows_xp");
855 -- Returns 1 if running on Windows XP
858 TaskId
: aliased DWORD
;
859 pTaskParameter
: Win32
.PVOID
;
861 Entry_Point
: PTHREAD_START_ROUTINE
;
863 use type System
.Multiprocessors
.CPU_Range
;
866 -- Check whether both Dispatching_Domain and CPU are specified for the
867 -- task, and the CPU value is not contained within the range of
868 -- processors for the domain.
870 if T
.Common
.Domain
/= null
871 and then T
.Common
.Base_CPU
/= System
.Multiprocessors
.Not_A_Specific_CPU
873 (T
.Common
.Base_CPU
not in T
.Common
.Domain
'Range
874 or else not T
.Common
.Domain
(T
.Common
.Base_CPU
))
880 pTaskParameter
:= To_Address
(T
);
882 Entry_Point
:= To_PTHREAD_START_ROUTINE
(Wrapper
);
884 if Is_Windows_XP
= 1 then
885 hTask
:= CreateThread
890 DWORD
(Create_Suspended
) or
891 DWORD
(Stack_Size_Param_Is_A_Reservation
),
892 TaskId
'Unchecked_Access);
894 hTask
:= CreateThread
899 DWORD
(Create_Suspended
),
900 TaskId
'Unchecked_Access);
903 -- Step 1: Create the thread in blocked mode
910 -- Step 2: set its TCB
912 T
.Common
.LL
.Thread
:= hTask
;
914 -- Note: it would be useful to initialize Thread_Id right away to avoid
915 -- a race condition in gdb where Thread_ID may not have the right value
916 -- yet, but GetThreadId is a Vista specific API, not available under XP:
917 -- T.Common.LL.Thread_Id := GetThreadId (hTask); so instead we set the
918 -- field to 0 to avoid having a random value. Thread_Id is initialized
919 -- in Enter_Task anyway.
921 T
.Common
.LL
.Thread_Id
:= 0;
923 -- Step 3: set its priority (child has inherited priority from parent)
925 Set_Priority
(T
, Priority
);
927 if Time_Slice_Val
= 0
928 or else Dispatching_Policy
= 'F'
929 or else Get_Policy
(Priority
) = 'F'
931 -- Here we need Annex D semantics so we disable the NT priority
932 -- boost. A priority boost is temporarily given by the system to
933 -- a thread when it is taken out of a wait state.
935 SetThreadPriorityBoost
(hTask
, DisablePriorityBoost
=> Win32
.TRUE);
938 -- Step 4: Handle pragma CPU and Task_Info
940 Set_Task_Affinity
(T
);
942 -- Step 5: Now, start it for good
944 Result
:= ResumeThread
(hTask
);
945 pragma Assert
(Result
= 1);
947 Succeeded
:= Result
= 1;
954 procedure Finalize_TCB
(T
: Task_Id
) is
958 if not Single_Lock
then
959 Finalize_Lock
(T
.Common
.LL
.L
'Access);
962 Finalize_Cond
(T
.Common
.LL
.CV
'Access);
964 if T
.Known_Tasks_Index
/= -1 then
965 Known_Tasks
(T
.Known_Tasks_Index
) := null;
968 if T
.Common
.LL
.Thread
/= 0 then
970 -- This task has been activated. Close the thread handle. This
971 -- is needed to release system resources.
973 Succeeded
:= CloseHandle
(T
.Common
.LL
.Thread
);
974 pragma Assert
(Succeeded
= Win32
.TRUE);
977 ATCB_Allocation
.Free_ATCB
(T
);
984 procedure Exit_Task
is
993 procedure Abort_Task
(T
: Task_Id
) is
994 pragma Unreferenced
(T
);
999 ----------------------
1000 -- Environment_Task --
1001 ----------------------
1003 function Environment_Task
return Task_Id
is
1005 return Environment_Task_Id
;
1006 end Environment_Task
;
1012 procedure Lock_RTS
is
1014 Write_Lock
(Single_RTS_Lock
'Access, Global_Lock
=> True);
1021 procedure Unlock_RTS
is
1023 Unlock
(Single_RTS_Lock
'Access, Global_Lock
=> True);
1030 procedure Initialize
(Environment_Task
: Task_Id
) is
1032 pragma Unreferenced
(Discard
);
1035 Environment_Task_Id
:= Environment_Task
;
1036 OS_Primitives
.Initialize
;
1037 Interrupt_Management
.Initialize
;
1039 if Time_Slice_Val
= 0 or else Dispatching_Policy
= 'F' then
1040 -- Here we need Annex D semantics, switch the current process to the
1041 -- Realtime_Priority_Class.
1043 Discard
:= OS_Interface
.SetPriorityClass
1044 (GetCurrentProcess
, Realtime_Priority_Class
);
1047 TlsIndex
:= TlsAlloc
;
1049 -- Initialize the lock used to synchronize chain of all ATCBs
1051 Initialize_Lock
(Single_RTS_Lock
'Access, RTS_Lock_Level
);
1053 Environment_Task
.Common
.LL
.Thread
:= GetCurrentThread
;
1055 -- Make environment task known here because it doesn't go through
1056 -- Activate_Tasks, which does it for all other tasks.
1058 Known_Tasks
(Known_Tasks
'First) := Environment_Task
;
1059 Environment_Task
.Known_Tasks_Index
:= Known_Tasks
'First;
1061 Enter_Task
(Environment_Task
);
1063 -- pragma CPU and dispatching domains for the environment task
1065 Set_Task_Affinity
(Environment_Task
);
1068 ---------------------
1069 -- Monotonic_Clock --
1070 ---------------------
1072 function Monotonic_Clock
return Duration
1073 renames System
.OS_Primitives
.Monotonic_Clock
;
1079 function RT_Resolution
return Duration is
1081 return 0.000_001
; -- 1 micro-second
1088 procedure Initialize
(S
: in out Suspension_Object
) is
1090 -- Initialize internal state. It is always initialized to False (ARM
1096 -- Initialize internal mutex
1098 InitializeCriticalSection
(S
.L
'Access);
1100 -- Initialize internal condition variable
1102 S
.CV
:= CreateEvent
(null, Win32
.TRUE, Win32
.FALSE, Null_Ptr
);
1103 pragma Assert
(S
.CV
/= 0);
1110 procedure Finalize
(S
: in out Suspension_Object
) is
1114 -- Destroy internal mutex
1116 DeleteCriticalSection
(S
.L
'Access);
1118 -- Destroy internal condition variable
1120 Result
:= CloseHandle
(S
.CV
);
1121 pragma Assert
(Result
= Win32
.TRUE);
1128 function Current_State
(S
: Suspension_Object
) return Boolean is
1130 -- We do not want to use lock on this read operation. State is marked
1131 -- as Atomic so that we ensure that the value retrieved is correct.
1140 procedure Set_False
(S
: in out Suspension_Object
) is
1142 SSL
.Abort_Defer
.all;
1144 EnterCriticalSection
(S
.L
'Access);
1148 LeaveCriticalSection
(S
.L
'Access);
1150 SSL
.Abort_Undefer
.all;
1157 procedure Set_True
(S
: in out Suspension_Object
) is
1161 SSL
.Abort_Defer
.all;
1163 EnterCriticalSection
(S
.L
'Access);
1165 -- If there is already a task waiting on this suspension object then
1166 -- we resume it, leaving the state of the suspension object to False,
1167 -- as it is specified in ARM D.10 par. 9. Otherwise, it just leaves
1168 -- the state to True.
1174 Result
:= SetEvent
(S
.CV
);
1175 pragma Assert
(Result
= Win32
.TRUE);
1181 LeaveCriticalSection
(S
.L
'Access);
1183 SSL
.Abort_Undefer
.all;
1186 ------------------------
1187 -- Suspend_Until_True --
1188 ------------------------
1190 procedure Suspend_Until_True
(S
: in out Suspension_Object
) is
1195 SSL
.Abort_Defer
.all;
1197 EnterCriticalSection
(S
.L
'Access);
1201 -- Program_Error must be raised upon calling Suspend_Until_True
1202 -- if another task is already waiting on that suspension object
1203 -- (ARM D.10 par. 10).
1205 LeaveCriticalSection
(S
.L
'Access);
1207 SSL
.Abort_Undefer
.all;
1209 raise Program_Error
;
1212 -- Suspend the task if the state is False. Otherwise, the task
1213 -- continues its execution, and the state of the suspension object
1214 -- is set to False (ARM D.10 par. 9).
1219 LeaveCriticalSection
(S
.L
'Access);
1221 SSL
.Abort_Undefer
.all;
1226 -- Must reset CV BEFORE L is unlocked
1228 Result_Bool
:= ResetEvent
(S
.CV
);
1229 pragma Assert
(Result_Bool
= Win32
.TRUE);
1231 LeaveCriticalSection
(S
.L
'Access);
1233 SSL
.Abort_Undefer
.all;
1235 Result
:= WaitForSingleObject
(S
.CV
, Wait_Infinite
);
1236 pragma Assert
(Result
= 0);
1239 end Suspend_Until_True
;
1245 -- Dummy versions, currently this only works for solaris (native)
1247 function Check_Exit
(Self_ID
: ST
.Task_Id
) return Boolean is
1248 pragma Unreferenced
(Self_ID
);
1253 --------------------
1254 -- Check_No_Locks --
1255 --------------------
1257 function Check_No_Locks
(Self_ID
: ST
.Task_Id
) return Boolean is
1258 pragma Unreferenced
(Self_ID
);
1267 function Suspend_Task
1269 Thread_Self
: Thread_Id
) return Boolean
1272 if T
.Common
.LL
.Thread
/= Thread_Self
then
1273 return SuspendThread
(T
.Common
.LL
.Thread
) = NO_ERROR
;
1283 function Resume_Task
1285 Thread_Self
: Thread_Id
) return Boolean
1288 if T
.Common
.LL
.Thread
/= Thread_Self
then
1289 return ResumeThread
(T
.Common
.LL
.Thread
) = NO_ERROR
;
1295 --------------------
1296 -- Stop_All_Tasks --
1297 --------------------
1299 procedure Stop_All_Tasks
is
1308 function Stop_Task
(T
: ST
.Task_Id
) return Boolean is
1309 pragma Unreferenced
(T
);
1318 function Continue_Task
(T
: ST
.Task_Id
) return Boolean is
1319 pragma Unreferenced
(T
);
1324 -----------------------
1325 -- Set_Task_Affinity --
1326 -----------------------
1328 procedure Set_Task_Affinity
(T
: ST
.Task_Id
) is
1331 use type System
.Multiprocessors
.CPU_Range
;
1334 -- Do nothing if the underlying thread has not yet been created. If the
1335 -- thread has not yet been created then the proper affinity will be set
1336 -- during its creation.
1338 if T
.Common
.LL
.Thread
= Null_Thread_Id
then
1343 elsif T
.Common
.Base_CPU
/= Multiprocessors
.Not_A_Specific_CPU
then
1345 -- The CPU numbering in pragma CPU starts at 1 while the subprogram
1346 -- to set the affinity starts at 0, therefore we must substract 1.
1349 SetThreadIdealProcessor
1350 (T
.Common
.LL
.Thread
, ProcessorId
(T
.Common
.Base_CPU
) - 1);
1351 pragma Assert
(Result
= 1);
1355 elsif T
.Common
.Task_Info
/= null then
1356 if T
.Common
.Task_Info
.CPU
/= Task_Info
.Any_CPU
then
1358 SetThreadIdealProcessor
1359 (T
.Common
.LL
.Thread
, T
.Common
.Task_Info
.CPU
);
1360 pragma Assert
(Result
= 1);
1363 -- Dispatching domains
1365 elsif T
.Common
.Domain
/= null
1366 and then (T
.Common
.Domain
/= ST
.System_Domain
1368 T
.Common
.Domain
.all /=
1369 (Multiprocessors
.CPU
'First ..
1370 Multiprocessors
.Number_Of_CPUs
=> True))
1373 CPU_Set
: DWORD
:= 0;
1376 for Proc
in T
.Common
.Domain
'Range loop
1377 if T
.Common
.Domain
(Proc
) then
1379 -- The thread affinity mask is a bit vector in which each
1380 -- bit represents a logical processor.
1382 CPU_Set
:= CPU_Set
+ 2 ** (Integer (Proc
) - 1);
1386 Result
:= SetThreadAffinityMask
(T
.Common
.LL
.Thread
, CPU_Set
);
1387 pragma Assert
(Result
= 1);
1390 end Set_Task_Affinity
;
1392 end System
.Task_Primitives
.Operations
;