Daily bump.
[official-gcc.git] / gcc / ada / s-taprop-mingw.adb
blobcecb7e5fabf72955d3f5cc79bb8263c6775ab00a
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
4 -- --
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 --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2014, 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 -- This is a NT (native) version of this package
34 -- This package contains all the GNULL primitives that interface directly with
35 -- the underlying OS.
37 pragma Polling (Off);
38 -- Turn off polling, we do not want ATC polling to take place during tasking
39 -- operations. It causes infinite loops and other problems.
41 with Interfaces.C;
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;
62 use Interfaces.C;
63 use Interfaces.C.Strings;
64 use System.OS_Interface;
65 use System.OS_Primitives;
66 use System.Parameters;
67 use System.Task_Info;
68 use System.Tasking;
69 use System.Tasking.Debug;
70 use System.Win32;
71 use System.Win32.Ext;
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.
80 ---------------------
81 -- Local Functions --
82 ---------------------
84 procedure InitializeCriticalSection (pCriticalSection : access RTS_Lock);
85 procedure InitializeCriticalSection
86 (pCriticalSection : access CRITICAL_SECTION);
87 pragma Import
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");
104 ----------------
105 -- Local Data --
106 ----------------
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
131 -- initialized.
133 ------------------------------------
134 -- The thread local storage index --
135 ------------------------------------
137 TlsIndex : DWORD;
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.
142 --------------------
143 -- Local Packages --
144 --------------------
146 package Specific is
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);
153 pragma Inline (Set);
154 -- Set the self id for the current task
156 end Specific;
158 package body Specific is
160 function Is_Valid_Task return Boolean is
161 begin
162 return TlsGetValue (TlsIndex) /= System.Null_Address;
163 end Is_Valid_Task;
165 procedure Set (Self_Id : Task_Id) is
166 Succeeded : BOOL;
167 begin
168 Succeeded := TlsSetValue (TlsIndex, To_Address (Self_Id));
169 pragma Assert (Succeeded = Win32.TRUE);
170 end Set;
172 end Specific;
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
204 procedure Cond_Wait
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;
212 Rel_Time : Duration;
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
226 hEvent : HANDLE;
227 begin
228 hEvent := CreateEvent (null, Win32.TRUE, Win32.FALSE, Null_Ptr);
229 pragma Assert (hEvent /= 0);
230 Cond.all := Condition_Variable (hEvent);
231 end Initialize_Cond;
233 -------------------
234 -- Finalize_Cond --
235 -------------------
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
241 Result : BOOL;
242 begin
243 Result := CloseHandle (HANDLE (Cond.all));
244 pragma Assert (Result = Win32.TRUE);
245 end Finalize_Cond;
247 -----------------
248 -- Cond_Signal --
249 -----------------
251 procedure Cond_Signal (Cond : not null access Condition_Variable) is
252 Result : BOOL;
253 begin
254 Result := SetEvent (HANDLE (Cond.all));
255 pragma Assert (Result = Win32.TRUE);
256 end Cond_Signal;
258 ---------------
259 -- Cond_Wait --
260 ---------------
262 -- Pre-condition: Cond is posted
263 -- L is locked.
265 -- Post-condition: Cond is posted
266 -- L is locked.
268 procedure Cond_Wait
269 (Cond : not null access Condition_Variable;
270 L : not null access RTS_Lock)
272 Result : DWORD;
273 Result_Bool : BOOL;
275 begin
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);
289 end Cond_Wait;
291 ---------------------
292 -- Cond_Timed_Wait --
293 ---------------------
295 -- Pre-condition: Cond is posted
296 -- L is locked.
298 -- Post-condition: Cond is posted
299 -- L is locked.
301 procedure Cond_Timed_Wait
302 (Cond : not null access Condition_Variable;
303 L : not null access RTS_Lock;
304 Rel_Time : Duration;
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)
311 Time_Out : DWORD;
312 Result : BOOL;
313 Wait_Result : DWORD;
315 begin
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
326 Timed_Out := True;
327 Wait_Result := 0;
329 else
330 Time_Out :=
331 (if Rel_Time >= Duration (Time_Out_Max) / 1000
332 then Time_Out_Max
333 else DWORD (Rel_Time * 1000));
335 Wait_Result := WaitForSingleObject (HANDLE (Cond.all), Time_Out);
337 if Wait_Result = WAIT_TIMEOUT then
338 Timed_Out := True;
339 Wait_Result := 0;
340 else
341 Timed_Out := False;
342 end if;
343 end if;
345 Write_Lock (L, Global_Lock => True);
347 -- Ensure post-condition
349 if Timed_Out then
350 Result := SetEvent (HANDLE (Cond.all));
351 pragma Assert (Result = Win32.TRUE);
352 end if;
354 Status := Integer (Wait_Result);
355 end Cond_Timed_Wait;
357 ------------------
358 -- Stack_Guard --
359 ------------------
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);
367 begin
368 null;
369 end Stack_Guard;
371 --------------------
372 -- Get_Thread_Id --
373 --------------------
375 function Get_Thread_Id (T : ST.Task_Id) return OSI.Thread_Id is
376 begin
377 return T.Common.LL.Thread;
378 end Get_Thread_Id;
380 ----------
381 -- Self --
382 ----------
384 function Self return Task_Id is
385 Self_Id : constant Task_Id := To_Task_Id (TlsGetValue (TlsIndex));
386 begin
387 if Self_Id = null then
388 return Register_Foreign_Thread (GetCurrentThread);
389 else
390 return Self_Id;
391 end if;
392 end Self;
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)
408 begin
409 InitializeCriticalSection (L.Mutex'Access);
410 L.Owner_Priority := 0;
411 L.Priority := Prio;
412 end Initialize_Lock;
414 procedure Initialize_Lock
415 (L : not null access RTS_Lock; Level : Lock_Level)
417 pragma Unreferenced (Level);
418 begin
419 InitializeCriticalSection (L);
420 end Initialize_Lock;
422 -------------------
423 -- Finalize_Lock --
424 -------------------
426 procedure Finalize_Lock (L : not null access Lock) is
427 begin
428 DeleteCriticalSection (L.Mutex'Access);
429 end Finalize_Lock;
431 procedure Finalize_Lock (L : not null access RTS_Lock) is
432 begin
433 DeleteCriticalSection (L);
434 end Finalize_Lock;
436 ----------------
437 -- Write_Lock --
438 ----------------
440 procedure Write_Lock
441 (L : not null access Lock; Ceiling_Violation : out Boolean) is
442 begin
443 L.Owner_Priority := Get_Priority (Self);
445 if L.Priority < L.Owner_Priority then
446 Ceiling_Violation := True;
447 return;
448 end if;
450 EnterCriticalSection (L.Mutex'Access);
452 Ceiling_Violation := False;
453 end Write_Lock;
455 procedure Write_Lock
456 (L : not null access RTS_Lock;
457 Global_Lock : Boolean := False)
459 begin
460 if not Single_Lock or else Global_Lock then
461 EnterCriticalSection (L);
462 end if;
463 end Write_Lock;
465 procedure Write_Lock (T : Task_Id) is
466 begin
467 if not Single_Lock then
468 EnterCriticalSection (T.Common.LL.L'Access);
469 end if;
470 end Write_Lock;
472 ---------------
473 -- Read_Lock --
474 ---------------
476 procedure Read_Lock
477 (L : not null access Lock; Ceiling_Violation : out Boolean) is
478 begin
479 Write_Lock (L, Ceiling_Violation);
480 end Read_Lock;
482 ------------
483 -- Unlock --
484 ------------
486 procedure Unlock (L : not null access Lock) is
487 begin
488 LeaveCriticalSection (L.Mutex'Access);
489 end Unlock;
491 procedure Unlock
492 (L : not null access RTS_Lock; Global_Lock : Boolean := False) is
493 begin
494 if not Single_Lock or else Global_Lock then
495 LeaveCriticalSection (L);
496 end if;
497 end Unlock;
499 procedure Unlock (T : Task_Id) is
500 begin
501 if not Single_Lock then
502 LeaveCriticalSection (T.Common.LL.L'Access);
503 end if;
504 end Unlock;
506 -----------------
507 -- Set_Ceiling --
508 -----------------
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);
517 begin
518 null;
519 end Set_Ceiling;
521 -----------
522 -- Sleep --
523 -----------
525 procedure Sleep
526 (Self_ID : Task_Id;
527 Reason : System.Tasking.Task_States)
529 pragma Unreferenced (Reason);
531 begin
532 pragma Assert (Self_ID = Self);
534 if Single_Lock then
535 Cond_Wait (Self_ID.Common.LL.CV'Access, Single_RTS_Lock'Access);
536 else
537 Cond_Wait (Self_ID.Common.LL.CV'Access, Self_ID.Common.LL.L'Access);
538 end if;
540 if Self_ID.Deferral_Level = 0
541 and then Self_ID.Pending_ATC_Level < Self_ID.ATC_Nesting_Level
542 then
543 Unlock (Self_ID);
544 raise Standard'Abort_Signal;
545 end if;
546 end Sleep;
548 -----------------
549 -- Timed_Sleep --
550 -----------------
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
556 (Self_ID : Task_Id;
557 Time : Duration;
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;
565 Rel_Time : Duration;
566 Abs_Time : Duration;
568 Result : Integer;
569 pragma Unreferenced (Result);
571 Local_Timedout : Boolean;
573 begin
574 Timedout := True;
575 Yielded := False;
577 if Mode = Relative then
578 Rel_Time := Time;
579 Abs_Time := Duration'Min (Time, Max_Sensible_Delay) + Check_Time;
580 else
581 Rel_Time := Time - Check_Time;
582 Abs_Time := Time;
583 end if;
585 if Rel_Time > 0.0 then
586 loop
587 exit when Self_ID.Pending_ATC_Level < Self_ID.ATC_Nesting_Level;
589 if Single_Lock then
590 Cond_Timed_Wait
591 (Self_ID.Common.LL.CV'Access,
592 Single_RTS_Lock'Access,
593 Rel_Time, Local_Timedout, Result);
594 else
595 Cond_Timed_Wait
596 (Self_ID.Common.LL.CV'Access,
597 Self_ID.Common.LL.L'Access,
598 Rel_Time, Local_Timedout, Result);
599 end if;
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
608 Timedout := False;
609 exit;
610 end if;
612 Rel_Time := Abs_Time - Check_Time;
613 end loop;
614 end if;
615 end Timed_Sleep;
617 -----------------
618 -- Timed_Delay --
619 -----------------
621 procedure Timed_Delay
622 (Self_ID : Task_Id;
623 Time : Duration;
624 Mode : ST.Delay_Modes)
626 Check_Time : Duration := Monotonic_Clock;
627 Rel_Time : Duration;
628 Abs_Time : Duration;
630 Timedout : Boolean;
631 Result : Integer;
632 pragma Unreferenced (Timedout, Result);
634 begin
635 if Single_Lock then
636 Lock_RTS;
637 end if;
639 Write_Lock (Self_ID);
641 if Mode = Relative then
642 Rel_Time := Time;
643 Abs_Time := Time + Check_Time;
644 else
645 Rel_Time := Time - Check_Time;
646 Abs_Time := Time;
647 end if;
649 if Rel_Time > 0.0 then
650 Self_ID.Common.State := Delay_Sleep;
652 loop
653 exit when Self_ID.Pending_ATC_Level < Self_ID.ATC_Nesting_Level;
655 if Single_Lock then
656 Cond_Timed_Wait
657 (Self_ID.Common.LL.CV'Access,
658 Single_RTS_Lock'Access,
659 Rel_Time, Timedout, Result);
660 else
661 Cond_Timed_Wait
662 (Self_ID.Common.LL.CV'Access,
663 Self_ID.Common.LL.L'Access,
664 Rel_Time, Timedout, Result);
665 end if;
667 Check_Time := Monotonic_Clock;
668 exit when Abs_Time <= Check_Time;
670 Rel_Time := Abs_Time - Check_Time;
671 end loop;
673 Self_ID.Common.State := Runnable;
674 end if;
676 Unlock (Self_ID);
678 if Single_Lock then
679 Unlock_RTS;
680 end if;
682 Yield;
683 end Timed_Delay;
685 ------------
686 -- Wakeup --
687 ------------
689 procedure Wakeup (T : Task_Id; Reason : System.Tasking.Task_States) is
690 pragma Unreferenced (Reason);
691 begin
692 Cond_Signal (T.Common.LL.CV'Access);
693 end Wakeup;
695 -----------
696 -- Yield --
697 -----------
699 procedure Yield (Do_Yield : Boolean := True) is
700 begin
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).
710 if Do_Yield then
711 SwitchToThread;
712 end if;
713 end Yield;
715 ------------------
716 -- Set_Priority --
717 ------------------
719 procedure Set_Priority
720 (T : Task_Id;
721 Prio : System.Any_Priority;
722 Loss_Of_Inheritance : Boolean := False)
724 Res : BOOL;
725 pragma Unreferenced (Loss_Of_Inheritance);
727 begin
728 Res :=
729 SetThreadPriority
730 (T.Common.LL.Thread,
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;
745 end Set_Priority;
747 ------------------
748 -- Get_Priority --
749 ------------------
751 function Get_Priority (T : Task_Id) return System.Any_Priority is
752 begin
753 return T.Common.Current_Priority;
754 end Get_Priority;
756 ----------------
757 -- Enter_Task --
758 ----------------
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
776 begin
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
784 and then
785 Self_ID.Common.Task_Info.CPU >= CPU_Number (Number_Of_Processors)
786 then
787 raise Invalid_CPU_Number;
788 end if;
790 Self_ID.Common.LL.Thread_Id := GetCurrentThreadId;
792 Get_Stack_Bounds
793 (Self_ID.Common.Compiler_Data.Pri_Stack_Info.Base'Address,
794 Self_ID.Common.Compiler_Data.Pri_Stack_Info.Limit'Address);
795 end Enter_Task;
797 -------------------
798 -- Is_Valid_Task --
799 -------------------
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
808 begin
809 if Is_Valid_Task then
810 return Self;
811 else
812 return Register_Foreign_Thread (GetCurrentThread);
813 end if;
814 end Register_Foreign_Thread;
816 --------------------
817 -- Initialize_TCB --
818 --------------------
820 procedure Initialize_TCB (Self_ID : Task_Id; Succeeded : out Boolean) is
821 begin
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);
831 end if;
833 Succeeded := True;
834 end Initialize_TCB;
836 -----------------
837 -- Create_Task --
838 -----------------
840 procedure Create_Task
841 (T : Task_Id;
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
851 -- needed.
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
857 hTask : HANDLE;
858 TaskId : aliased DWORD;
859 pTaskParameter : Win32.PVOID;
860 Result : DWORD;
861 Entry_Point : PTHREAD_START_ROUTINE;
863 use type System.Multiprocessors.CPU_Range;
865 begin
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
872 and then
873 (T.Common.Base_CPU not in T.Common.Domain'Range
874 or else not T.Common.Domain (T.Common.Base_CPU))
875 then
876 Succeeded := False;
877 return;
878 end if;
880 pTaskParameter := To_Address (T);
882 Entry_Point := To_PTHREAD_START_ROUTINE (Wrapper);
884 if Is_Windows_XP = 1 then
885 hTask := CreateThread
886 (null,
887 DWORD (Stack_Size),
888 Entry_Point,
889 pTaskParameter,
890 DWORD (Create_Suspended) or
891 DWORD (Stack_Size_Param_Is_A_Reservation),
892 TaskId'Unchecked_Access);
893 else
894 hTask := CreateThread
895 (null,
896 Initial_Stack_Size,
897 Entry_Point,
898 pTaskParameter,
899 DWORD (Create_Suspended),
900 TaskId'Unchecked_Access);
901 end if;
903 -- Step 1: Create the thread in blocked mode
905 if hTask = 0 then
906 Succeeded := False;
907 return;
908 end if;
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'
930 then
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);
936 end if;
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;
948 end Create_Task;
950 ------------------
951 -- Finalize_TCB --
952 ------------------
954 procedure Finalize_TCB (T : Task_Id) is
955 Succeeded : BOOL;
957 begin
958 if not Single_Lock then
959 Finalize_Lock (T.Common.LL.L'Access);
960 end if;
962 Finalize_Cond (T.Common.LL.CV'Access);
964 if T.Known_Tasks_Index /= -1 then
965 Known_Tasks (T.Known_Tasks_Index) := null;
966 end if;
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);
975 end if;
977 ATCB_Allocation.Free_ATCB (T);
978 end Finalize_TCB;
980 ---------------
981 -- Exit_Task --
982 ---------------
984 procedure Exit_Task is
985 begin
986 Specific.Set (null);
987 end Exit_Task;
989 ----------------
990 -- Abort_Task --
991 ----------------
993 procedure Abort_Task (T : Task_Id) is
994 pragma Unreferenced (T);
995 begin
996 null;
997 end Abort_Task;
999 ----------------------
1000 -- Environment_Task --
1001 ----------------------
1003 function Environment_Task return Task_Id is
1004 begin
1005 return Environment_Task_Id;
1006 end Environment_Task;
1008 --------------
1009 -- Lock_RTS --
1010 --------------
1012 procedure Lock_RTS is
1013 begin
1014 Write_Lock (Single_RTS_Lock'Access, Global_Lock => True);
1015 end Lock_RTS;
1017 ----------------
1018 -- Unlock_RTS --
1019 ----------------
1021 procedure Unlock_RTS is
1022 begin
1023 Unlock (Single_RTS_Lock'Access, Global_Lock => True);
1024 end Unlock_RTS;
1026 ----------------
1027 -- Initialize --
1028 ----------------
1030 procedure Initialize (Environment_Task : Task_Id) is
1031 Discard : BOOL;
1033 begin
1034 Environment_Task_Id := Environment_Task;
1035 OS_Primitives.Initialize;
1036 Interrupt_Management.Initialize;
1038 if Time_Slice_Val = 0 or else Dispatching_Policy = 'F' then
1039 -- Here we need Annex D semantics, switch the current process to the
1040 -- Realtime_Priority_Class.
1042 Discard := OS_Interface.SetPriorityClass
1043 (GetCurrentProcess, Realtime_Priority_Class);
1044 end if;
1046 TlsIndex := TlsAlloc;
1048 -- Initialize the lock used to synchronize chain of all ATCBs
1050 Initialize_Lock (Single_RTS_Lock'Access, RTS_Lock_Level);
1052 Environment_Task.Common.LL.Thread := GetCurrentThread;
1054 -- Make environment task known here because it doesn't go through
1055 -- Activate_Tasks, which does it for all other tasks.
1057 Known_Tasks (Known_Tasks'First) := Environment_Task;
1058 Environment_Task.Known_Tasks_Index := Known_Tasks'First;
1060 Enter_Task (Environment_Task);
1062 -- pragma CPU and dispatching domains for the environment task
1064 Set_Task_Affinity (Environment_Task);
1065 end Initialize;
1067 ---------------------
1068 -- Monotonic_Clock --
1069 ---------------------
1071 function Monotonic_Clock return Duration
1072 renames System.OS_Primitives.Monotonic_Clock;
1074 -------------------
1075 -- RT_Resolution --
1076 -------------------
1078 function RT_Resolution return Duration is
1079 Ticks_Per_Second : aliased LARGE_INTEGER;
1080 begin
1081 QueryPerformanceFrequency (Ticks_Per_Second'Access);
1082 return Duration (1.0 / Ticks_Per_Second);
1083 end RT_Resolution;
1085 ----------------
1086 -- Initialize --
1087 ----------------
1089 procedure Initialize (S : in out Suspension_Object) is
1090 begin
1091 -- Initialize internal state. It is always initialized to False (ARM
1092 -- D.10 par. 6).
1094 S.State := False;
1095 S.Waiting := False;
1097 -- Initialize internal mutex
1099 InitializeCriticalSection (S.L'Access);
1101 -- Initialize internal condition variable
1103 S.CV := CreateEvent (null, Win32.TRUE, Win32.FALSE, Null_Ptr);
1104 pragma Assert (S.CV /= 0);
1105 end Initialize;
1107 --------------
1108 -- Finalize --
1109 --------------
1111 procedure Finalize (S : in out Suspension_Object) is
1112 Result : BOOL;
1114 begin
1115 -- Destroy internal mutex
1117 DeleteCriticalSection (S.L'Access);
1119 -- Destroy internal condition variable
1121 Result := CloseHandle (S.CV);
1122 pragma Assert (Result = Win32.TRUE);
1123 end Finalize;
1125 -------------------
1126 -- Current_State --
1127 -------------------
1129 function Current_State (S : Suspension_Object) return Boolean is
1130 begin
1131 -- We do not want to use lock on this read operation. State is marked
1132 -- as Atomic so that we ensure that the value retrieved is correct.
1134 return S.State;
1135 end Current_State;
1137 ---------------
1138 -- Set_False --
1139 ---------------
1141 procedure Set_False (S : in out Suspension_Object) is
1142 begin
1143 SSL.Abort_Defer.all;
1145 EnterCriticalSection (S.L'Access);
1147 S.State := False;
1149 LeaveCriticalSection (S.L'Access);
1151 SSL.Abort_Undefer.all;
1152 end Set_False;
1154 --------------
1155 -- Set_True --
1156 --------------
1158 procedure Set_True (S : in out Suspension_Object) is
1159 Result : BOOL;
1161 begin
1162 SSL.Abort_Defer.all;
1164 EnterCriticalSection (S.L'Access);
1166 -- If there is already a task waiting on this suspension object then
1167 -- we resume it, leaving the state of the suspension object to False,
1168 -- as it is specified in ARM D.10 par. 9. Otherwise, it just leaves
1169 -- the state to True.
1171 if S.Waiting then
1172 S.Waiting := False;
1173 S.State := False;
1175 Result := SetEvent (S.CV);
1176 pragma Assert (Result = Win32.TRUE);
1178 else
1179 S.State := True;
1180 end if;
1182 LeaveCriticalSection (S.L'Access);
1184 SSL.Abort_Undefer.all;
1185 end Set_True;
1187 ------------------------
1188 -- Suspend_Until_True --
1189 ------------------------
1191 procedure Suspend_Until_True (S : in out Suspension_Object) is
1192 Result : DWORD;
1193 Result_Bool : BOOL;
1195 begin
1196 SSL.Abort_Defer.all;
1198 EnterCriticalSection (S.L'Access);
1200 if S.Waiting then
1202 -- Program_Error must be raised upon calling Suspend_Until_True
1203 -- if another task is already waiting on that suspension object
1204 -- (ARM D.10 par. 10).
1206 LeaveCriticalSection (S.L'Access);
1208 SSL.Abort_Undefer.all;
1210 raise Program_Error;
1212 else
1213 -- Suspend the task if the state is False. Otherwise, the task
1214 -- continues its execution, and the state of the suspension object
1215 -- is set to False (ARM D.10 par. 9).
1217 if S.State then
1218 S.State := False;
1220 LeaveCriticalSection (S.L'Access);
1222 SSL.Abort_Undefer.all;
1224 else
1225 S.Waiting := True;
1227 -- Must reset CV BEFORE L is unlocked
1229 Result_Bool := ResetEvent (S.CV);
1230 pragma Assert (Result_Bool = Win32.TRUE);
1232 LeaveCriticalSection (S.L'Access);
1234 SSL.Abort_Undefer.all;
1236 Result := WaitForSingleObject (S.CV, Wait_Infinite);
1237 pragma Assert (Result = 0);
1238 end if;
1239 end if;
1240 end Suspend_Until_True;
1242 ----------------
1243 -- Check_Exit --
1244 ----------------
1246 -- Dummy versions, currently this only works for solaris (native)
1248 function Check_Exit (Self_ID : ST.Task_Id) return Boolean is
1249 pragma Unreferenced (Self_ID);
1250 begin
1251 return True;
1252 end Check_Exit;
1254 --------------------
1255 -- Check_No_Locks --
1256 --------------------
1258 function Check_No_Locks (Self_ID : ST.Task_Id) return Boolean is
1259 pragma Unreferenced (Self_ID);
1260 begin
1261 return True;
1262 end Check_No_Locks;
1264 ------------------
1265 -- Suspend_Task --
1266 ------------------
1268 function Suspend_Task
1269 (T : ST.Task_Id;
1270 Thread_Self : Thread_Id) return Boolean
1272 begin
1273 if T.Common.LL.Thread /= Thread_Self then
1274 return SuspendThread (T.Common.LL.Thread) = NO_ERROR;
1275 else
1276 return True;
1277 end if;
1278 end Suspend_Task;
1280 -----------------
1281 -- Resume_Task --
1282 -----------------
1284 function Resume_Task
1285 (T : ST.Task_Id;
1286 Thread_Self : Thread_Id) return Boolean
1288 begin
1289 if T.Common.LL.Thread /= Thread_Self then
1290 return ResumeThread (T.Common.LL.Thread) = NO_ERROR;
1291 else
1292 return True;
1293 end if;
1294 end Resume_Task;
1296 --------------------
1297 -- Stop_All_Tasks --
1298 --------------------
1300 procedure Stop_All_Tasks is
1301 begin
1302 null;
1303 end Stop_All_Tasks;
1305 ---------------
1306 -- Stop_Task --
1307 ---------------
1309 function Stop_Task (T : ST.Task_Id) return Boolean is
1310 pragma Unreferenced (T);
1311 begin
1312 return False;
1313 end Stop_Task;
1315 -------------------
1316 -- Continue_Task --
1317 -------------------
1319 function Continue_Task (T : ST.Task_Id) return Boolean is
1320 pragma Unreferenced (T);
1321 begin
1322 return False;
1323 end Continue_Task;
1325 -----------------------
1326 -- Set_Task_Affinity --
1327 -----------------------
1329 procedure Set_Task_Affinity (T : ST.Task_Id) is
1330 Result : DWORD;
1332 use type System.Multiprocessors.CPU_Range;
1334 begin
1335 -- Do nothing if the underlying thread has not yet been created. If the
1336 -- thread has not yet been created then the proper affinity will be set
1337 -- during its creation.
1339 if T.Common.LL.Thread = Null_Thread_Id then
1340 null;
1342 -- pragma CPU
1344 elsif T.Common.Base_CPU /= Multiprocessors.Not_A_Specific_CPU then
1346 -- The CPU numbering in pragma CPU starts at 1 while the subprogram
1347 -- to set the affinity starts at 0, therefore we must substract 1.
1349 Result :=
1350 SetThreadIdealProcessor
1351 (T.Common.LL.Thread, ProcessorId (T.Common.Base_CPU) - 1);
1352 pragma Assert (Result = 1);
1354 -- Task_Info
1356 elsif T.Common.Task_Info /= null then
1357 if T.Common.Task_Info.CPU /= Task_Info.Any_CPU then
1358 Result :=
1359 SetThreadIdealProcessor
1360 (T.Common.LL.Thread, T.Common.Task_Info.CPU);
1361 pragma Assert (Result = 1);
1362 end if;
1364 -- Dispatching domains
1366 elsif T.Common.Domain /= null
1367 and then (T.Common.Domain /= ST.System_Domain
1368 or else
1369 T.Common.Domain.all /=
1370 (Multiprocessors.CPU'First ..
1371 Multiprocessors.Number_Of_CPUs => True))
1372 then
1373 declare
1374 CPU_Set : DWORD := 0;
1376 begin
1377 for Proc in T.Common.Domain'Range loop
1378 if T.Common.Domain (Proc) then
1380 -- The thread affinity mask is a bit vector in which each
1381 -- bit represents a logical processor.
1383 CPU_Set := CPU_Set + 2 ** (Integer (Proc) - 1);
1384 end if;
1385 end loop;
1387 Result := SetThreadAffinityMask (T.Common.LL.Thread, CPU_Set);
1388 pragma Assert (Result = 1);
1389 end;
1390 end if;
1391 end Set_Task_Affinity;
1393 end System.Task_Primitives.Operations;