* config/bfin/bfin.md (doloop_end): Fail for loops that can iterate
[official-gcc.git] / gcc / ada / s-taprop-lynxos.adb
blob881a0cea4ef9f0f9c5c8d9b7b5832ead7fce4647
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-2006, 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 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, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
21 -- --
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. --
28 -- --
29 -- GNARL was developed by the GNARL team at Florida State University. --
30 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
31 -- --
32 ------------------------------------------------------------------------------
34 -- This is a LynxOS version of this file, adapted to make
35 -- SCHED_FIFO and ceiling locking (Annex D compliance) work properly
37 -- This package contains all the GNULL primitives that interface directly
38 -- with the underlying OS.
40 pragma Polling (Off);
41 -- Turn off polling, we do not want ATC polling to take place during
42 -- tasking operations. It causes infinite loops and other problems.
44 with System.Tasking.Debug;
45 -- used for Known_Tasks
47 with System.Interrupt_Management;
48 -- used for Keep_Unmasked
49 -- Abort_Task_Interrupt
50 -- Interrupt_ID
52 with System.OS_Primitives;
53 -- used for Delay_Modes
55 with System.Task_Info;
56 -- used for Task_Info_Type
58 with Interfaces.C;
59 -- used for int
60 -- size_t
62 with System.Soft_Links;
63 -- used for Abort_Defer/Undefer
65 -- We use System.Soft_Links instead of System.Tasking.Initialization
66 -- because the later is a higher level package that we shouldn't depend on.
67 -- For example when using the restricted run time, it is replaced by
68 -- System.Tasking.Restricted.Stages.
70 with Unchecked_Deallocation;
72 package body System.Task_Primitives.Operations is
74 package SSL renames System.Soft_Links;
76 use System.Tasking.Debug;
77 use System.Tasking;
78 use Interfaces.C;
79 use System.OS_Interface;
80 use System.Parameters;
81 use System.OS_Primitives;
83 ----------------
84 -- Local Data --
85 ----------------
87 -- The followings are logically constants, but need to be initialized
88 -- at run time.
90 Single_RTS_Lock : aliased RTS_Lock;
91 -- This is a lock to allow only one thread of control in the RTS at
92 -- a time; it is used to execute in mutual exclusion from all other tasks.
93 -- Used mainly in Single_Lock mode, but also to protect All_Tasks_List
95 ATCB_Key : aliased pthread_key_t;
96 -- Key used to find the Ada Task_Id associated with a thread
98 Environment_Task_Id : Task_Id;
99 -- A variable to hold Task_Id for the environment task
101 Locking_Policy : Character;
102 pragma Import (C, Locking_Policy, "__gl_locking_policy");
103 -- Value of the pragma Locking_Policy:
104 -- 'C' for Ceiling_Locking
105 -- 'I' for Inherit_Locking
106 -- ' ' for none.
108 Unblocked_Signal_Mask : aliased sigset_t;
109 -- The set of signals that should unblocked in all tasks
111 -- The followings are internal configuration constants needed
113 Next_Serial_Number : Task_Serial_Number := 100;
114 -- We start at 100, to reserve some special values for
115 -- using in error checking.
117 Time_Slice_Val : Integer;
118 pragma Import (C, Time_Slice_Val, "__gl_time_slice_val");
120 Dispatching_Policy : Character;
121 pragma Import (C, Dispatching_Policy, "__gl_task_dispatching_policy");
123 Foreign_Task_Elaborated : aliased Boolean := True;
124 -- Used to identified fake tasks (i.e., non-Ada Threads)
126 --------------------
127 -- Local Packages --
128 --------------------
130 package Specific is
132 procedure Initialize (Environment_Task : Task_Id);
133 pragma Inline (Initialize);
134 -- Initialize various data needed by this package
136 function Is_Valid_Task return Boolean;
137 pragma Inline (Is_Valid_Task);
138 -- Does the current thread have an ATCB?
140 procedure Set (Self_Id : Task_Id);
141 pragma Inline (Set);
142 -- Set the self id for the current task
144 function Self return Task_Id;
145 pragma Inline (Self);
146 -- Return a pointer to the Ada Task Control Block of the calling task
148 end Specific;
150 package body Specific is separate;
151 -- The body of this package is target specific
153 ---------------------------------
154 -- Support for foreign threads --
155 ---------------------------------
157 function Register_Foreign_Thread (Thread : Thread_Id) return Task_Id;
158 -- Allocate and Initialize a new ATCB for the current Thread
160 function Register_Foreign_Thread
161 (Thread : Thread_Id) return Task_Id is separate;
163 -----------------------
164 -- Local Subprograms --
165 -----------------------
167 procedure Abort_Handler (Sig : Signal);
168 -- Signal handler used to implement asynchronous abort
170 procedure Set_OS_Priority (T : Task_Id; Prio : System.Any_Priority);
171 -- This procedure calls the scheduler of the OS to set thread's priority
173 -------------------
174 -- Abort_Handler --
175 -------------------
177 procedure Abort_Handler (Sig : Signal) is
178 pragma Unreferenced (Sig);
180 T : constant Task_Id := Self;
181 Result : Interfaces.C.int;
182 Old_Set : aliased sigset_t;
184 begin
185 -- It is not safe to raise an exception when using ZCX and the GCC
186 -- exception handling mechanism.
188 if ZCX_By_Default and then GCC_ZCX_Support then
189 return;
190 end if;
192 if T.Deferral_Level = 0
193 and then T.Pending_ATC_Level < T.ATC_Nesting_Level and then
194 not T.Aborting
195 then
196 T.Aborting := True;
198 -- Make sure signals used for RTS internal purpose are unmasked
200 Result :=
201 pthread_sigmask (SIG_UNBLOCK,
202 Unblocked_Signal_Mask'Unchecked_Access,
203 Old_Set'Unchecked_Access);
204 pragma Assert (Result = 0);
206 raise Standard'Abort_Signal;
207 end if;
208 end Abort_Handler;
210 -----------------
211 -- Stack_Guard --
212 -----------------
214 procedure Stack_Guard (T : ST.Task_Id; On : Boolean) is
215 Stack_Base : constant Address := Get_Stack_Base (T.Common.LL.Thread);
216 Guard_Page_Address : Address;
218 Res : Interfaces.C.int;
220 begin
221 if Stack_Base_Available then
223 -- Compute the guard page address
225 Guard_Page_Address :=
226 Stack_Base - (Stack_Base mod Get_Page_Size) + Get_Page_Size;
228 if On then
229 Res := mprotect (Guard_Page_Address, Get_Page_Size, PROT_ON);
230 else
231 Res := mprotect (Guard_Page_Address, Get_Page_Size, PROT_OFF);
232 end if;
234 pragma Assert (Res = 0);
235 end if;
236 end Stack_Guard;
238 --------------------
239 -- Get_Thread_Id --
240 --------------------
242 function Get_Thread_Id (T : ST.Task_Id) return OSI.Thread_Id is
243 begin
244 return T.Common.LL.Thread;
245 end Get_Thread_Id;
247 ----------
248 -- Self --
249 ----------
251 function Self return Task_Id renames Specific.Self;
253 ---------------------
254 -- Initialize_Lock --
255 ---------------------
257 procedure Initialize_Lock
258 (Prio : System.Any_Priority;
259 L : access Lock)
261 Attributes : aliased pthread_mutexattr_t;
262 Result : Interfaces.C.int;
264 begin
265 Result := pthread_mutexattr_init (Attributes'Access);
266 pragma Assert (Result = 0 or else Result = ENOMEM);
268 if Result = ENOMEM then
269 raise Storage_Error;
270 end if;
272 if Locking_Policy = 'C' then
273 L.Ceiling := Prio;
274 end if;
276 Result := pthread_mutex_init (L.Mutex'Access, Attributes'Access);
277 pragma Assert (Result = 0 or else Result = ENOMEM);
279 if Result = ENOMEM then
280 raise Storage_Error;
281 end if;
283 Result := pthread_mutexattr_destroy (Attributes'Access);
284 pragma Assert (Result = 0);
285 end Initialize_Lock;
287 procedure Initialize_Lock (L : access RTS_Lock; Level : Lock_Level) is
288 pragma Unreferenced (Level);
290 Attributes : aliased pthread_mutexattr_t;
291 Result : Interfaces.C.int;
293 begin
294 Result := pthread_mutexattr_init (Attributes'Access);
295 pragma Assert (Result = 0 or else Result = ENOMEM);
297 if Result = ENOMEM then
298 raise Storage_Error;
299 end if;
301 Result := pthread_mutex_init (L, Attributes'Access);
302 pragma Assert (Result = 0 or else Result = ENOMEM);
304 if Result = ENOMEM then
305 Result := pthread_mutexattr_destroy (Attributes'Access);
306 raise Storage_Error;
307 end if;
309 Result := pthread_mutexattr_destroy (Attributes'Access);
310 pragma Assert (Result = 0);
311 end Initialize_Lock;
313 -------------------
314 -- Finalize_Lock --
315 -------------------
317 procedure Finalize_Lock (L : access Lock) is
318 Result : Interfaces.C.int;
319 begin
320 Result := pthread_mutex_destroy (L.Mutex'Access);
321 pragma Assert (Result = 0);
322 end Finalize_Lock;
324 procedure Finalize_Lock (L : access RTS_Lock) is
325 Result : Interfaces.C.int;
326 begin
327 Result := pthread_mutex_destroy (L);
328 pragma Assert (Result = 0);
329 end Finalize_Lock;
331 ----------------
332 -- Write_Lock --
333 ----------------
335 procedure Write_Lock (L : access Lock; Ceiling_Violation : out Boolean) is
336 Result : Interfaces.C.int;
337 T : constant Task_Id := Self;
339 begin
340 if Locking_Policy = 'C' then
341 if T.Common.Current_Priority > L.Ceiling then
342 Ceiling_Violation := True;
343 return;
344 end if;
346 L.Saved_Priority := T.Common.Current_Priority;
348 if T.Common.Current_Priority < L.Ceiling then
349 Set_OS_Priority (T, L.Ceiling);
350 end if;
351 end if;
353 Result := pthread_mutex_lock (L.Mutex'Access);
355 -- Assume that the cause of EINVAL is a priority ceiling violation
357 Ceiling_Violation := (Result = EINVAL);
358 pragma Assert (Result = 0 or else Result = EINVAL);
359 end Write_Lock;
361 -- No tricks on RTS_Locks
363 procedure Write_Lock
364 (L : access RTS_Lock; Global_Lock : Boolean := False)
366 Result : Interfaces.C.int;
367 begin
368 if not Single_Lock or else Global_Lock then
369 Result := pthread_mutex_lock (L);
370 pragma Assert (Result = 0);
371 end if;
372 end Write_Lock;
374 procedure Write_Lock (T : Task_Id) is
375 Result : Interfaces.C.int;
376 begin
377 if not Single_Lock then
378 Result := pthread_mutex_lock (T.Common.LL.L'Access);
379 pragma Assert (Result = 0);
380 end if;
381 end Write_Lock;
383 ---------------
384 -- Read_Lock --
385 ---------------
387 procedure Read_Lock (L : access Lock; Ceiling_Violation : out Boolean) is
388 begin
389 Write_Lock (L, Ceiling_Violation);
390 end Read_Lock;
392 ------------
393 -- Unlock --
394 ------------
396 procedure Unlock (L : access Lock) is
397 Result : Interfaces.C.int;
398 T : constant Task_Id := Self;
400 begin
401 Result := pthread_mutex_unlock (L.Mutex'Access);
402 pragma Assert (Result = 0);
404 if Locking_Policy = 'C' then
405 if T.Common.Current_Priority > L.Saved_Priority then
406 Set_OS_Priority (T, L.Saved_Priority);
407 end if;
408 end if;
409 end Unlock;
411 procedure Unlock (L : access RTS_Lock; Global_Lock : Boolean := False) is
412 Result : Interfaces.C.int;
413 begin
414 if not Single_Lock or else Global_Lock then
415 Result := pthread_mutex_unlock (L);
416 pragma Assert (Result = 0);
417 end if;
418 end Unlock;
420 procedure Unlock (T : Task_Id) is
421 Result : Interfaces.C.int;
422 begin
423 if not Single_Lock then
424 Result := pthread_mutex_unlock (T.Common.LL.L'Access);
425 pragma Assert (Result = 0);
426 end if;
427 end Unlock;
429 -----------
430 -- Sleep --
431 -----------
433 procedure Sleep
434 (Self_ID : Task_Id;
435 Reason : System.Tasking.Task_States)
437 pragma Unreferenced (Reason);
438 Result : Interfaces.C.int;
440 begin
441 if Single_Lock then
442 Result := pthread_cond_wait
443 (Self_ID.Common.LL.CV'Access, Single_RTS_Lock'Access);
444 else
445 Result := pthread_cond_wait
446 (Self_ID.Common.LL.CV'Access, Self_ID.Common.LL.L'Access);
447 end if;
449 -- EINTR is not considered a failure
451 pragma Assert (Result = 0 or else Result = EINTR);
452 end Sleep;
454 -----------------
455 -- Timed_Sleep --
456 -----------------
458 -- This is for use within the run-time system, so abort is
459 -- assumed to be already deferred, and the caller should be
460 -- holding its own ATCB lock.
462 procedure Timed_Sleep
463 (Self_ID : Task_Id;
464 Time : Duration;
465 Mode : ST.Delay_Modes;
466 Reason : Task_States;
467 Timedout : out Boolean;
468 Yielded : out Boolean)
470 pragma Unreferenced (Reason);
472 Check_Time : constant Duration := Monotonic_Clock;
473 Rel_Time : Duration;
474 Abs_Time : Duration;
475 Request : aliased timespec;
476 Result : Interfaces.C.int;
478 begin
479 Timedout := True;
480 Yielded := False;
482 if Mode = Relative then
483 Abs_Time := Duration'Min (Time, Max_Sensible_Delay) + Check_Time;
485 if Relative_Timed_Wait then
486 Rel_Time := Duration'Min (Max_Sensible_Delay, Time);
487 end if;
489 else
490 Abs_Time := Duration'Min (Check_Time + Max_Sensible_Delay, Time);
492 if Relative_Timed_Wait then
493 Rel_Time := Duration'Min (Max_Sensible_Delay, Time - Check_Time);
494 end if;
495 end if;
497 if Abs_Time > Check_Time then
498 if Relative_Timed_Wait then
499 Request := To_Timespec (Rel_Time);
500 else
501 Request := To_Timespec (Abs_Time);
502 end if;
504 loop
505 exit when Self_ID.Pending_ATC_Level < Self_ID.ATC_Nesting_Level
506 or else Self_ID.Pending_Priority_Change;
508 if Single_Lock then
509 Result := pthread_cond_timedwait
510 (Self_ID.Common.LL.CV'Access, Single_RTS_Lock'Access,
511 Request'Access);
513 else
514 Result := pthread_cond_timedwait
515 (Self_ID.Common.LL.CV'Access, Self_ID.Common.LL.L'Access,
516 Request'Access);
517 end if;
519 exit when Abs_Time <= Monotonic_Clock;
521 if Result = 0 or Result = EINTR then
523 -- Somebody may have called Wakeup for us
525 Timedout := False;
526 exit;
527 end if;
529 pragma Assert (Result = ETIMEDOUT);
530 end loop;
531 end if;
532 end Timed_Sleep;
534 -----------------
535 -- Timed_Delay --
536 -----------------
538 -- This is for use in implementing delay statements, so we assume
539 -- the caller is abort-deferred but is holding no locks.
541 procedure Timed_Delay
542 (Self_ID : Task_Id;
543 Time : Duration;
544 Mode : ST.Delay_Modes)
546 Check_Time : constant Duration := Monotonic_Clock;
547 Abs_Time : Duration;
548 Rel_Time : Duration;
549 Request : aliased timespec;
551 Result : Interfaces.C.int;
552 pragma Warnings (Off, Result);
554 begin
555 if Single_Lock then
556 Lock_RTS;
557 end if;
559 -- Comments needed in code below ???
561 Write_Lock (Self_ID);
563 if Mode = Relative then
564 Abs_Time := Duration'Min (Time, Max_Sensible_Delay) + Check_Time;
566 if Relative_Timed_Wait then
567 Rel_Time := Duration'Min (Max_Sensible_Delay, Time);
568 end if;
570 else
571 Abs_Time := Duration'Min (Check_Time + Max_Sensible_Delay, Time);
573 if Relative_Timed_Wait then
574 Rel_Time := Duration'Min (Max_Sensible_Delay, Time - Check_Time);
575 end if;
576 end if;
578 if Abs_Time > Check_Time then
579 if Relative_Timed_Wait then
580 Request := To_Timespec (Rel_Time);
581 else
582 Request := To_Timespec (Abs_Time);
583 end if;
585 Self_ID.Common.State := Delay_Sleep;
587 loop
588 if Self_ID.Pending_Priority_Change then
589 Self_ID.Pending_Priority_Change := False;
590 Self_ID.Common.Base_Priority := Self_ID.New_Base_Priority;
591 Set_Priority (Self_ID, Self_ID.Common.Base_Priority);
592 end if;
594 exit when Self_ID.Pending_ATC_Level < Self_ID.ATC_Nesting_Level;
596 if Single_Lock then
597 Result := pthread_cond_timedwait
598 (Self_ID.Common.LL.CV'Access,
599 Single_RTS_Lock'Access,
600 Request'Access);
601 else
602 Result := pthread_cond_timedwait
603 (Self_ID.Common.LL.CV'Access,
604 Self_ID.Common.LL.L'Access,
605 Request'Access);
606 end if;
608 exit when Abs_Time <= Monotonic_Clock;
610 pragma Assert (Result = 0
611 or else Result = ETIMEDOUT
612 or else Result = EINTR);
613 end loop;
615 Self_ID.Common.State := Runnable;
616 end if;
618 Unlock (Self_ID);
620 if Single_Lock then
621 Unlock_RTS;
622 end if;
624 Result := sched_yield;
625 end Timed_Delay;
627 ---------------------
628 -- Monotonic_Clock --
629 ---------------------
631 function Monotonic_Clock return Duration is
632 TS : aliased timespec;
633 Result : Interfaces.C.int;
634 begin
635 Result := clock_gettime
636 (clock_id => CLOCK_REALTIME, tp => TS'Unchecked_Access);
637 pragma Assert (Result = 0);
638 return To_Duration (TS);
639 end Monotonic_Clock;
641 -------------------
642 -- RT_Resolution --
643 -------------------
645 function RT_Resolution return Duration is
646 Res : aliased timespec;
647 Result : Interfaces.C.int;
648 begin
649 Result := clock_getres
650 (clock_id => CLOCK_REALTIME, Res => Res'Unchecked_Access);
651 pragma Assert (Result = 0);
652 return To_Duration (Res);
653 end RT_Resolution;
655 ------------
656 -- Wakeup --
657 ------------
659 procedure Wakeup (T : Task_Id; Reason : System.Tasking.Task_States) is
660 pragma Unreferenced (Reason);
661 Result : Interfaces.C.int;
662 begin
663 Result := pthread_cond_signal (T.Common.LL.CV'Access);
664 pragma Assert (Result = 0);
665 end Wakeup;
667 -----------
668 -- Yield --
669 -----------
671 procedure Yield (Do_Yield : Boolean := True) is
672 Result : Interfaces.C.int;
673 pragma Unreferenced (Result);
674 begin
675 if Do_Yield then
676 Result := sched_yield;
677 end if;
678 end Yield;
680 ------------------
681 -- Set_Priority --
682 ------------------
684 procedure Set_OS_Priority (T : Task_Id; Prio : System.Any_Priority) is
685 Result : Interfaces.C.int;
686 Param : aliased struct_sched_param;
688 function Get_Policy (Prio : System.Any_Priority) return Character;
689 pragma Import (C, Get_Policy, "__gnat_get_specific_dispatching");
690 -- Get priority specific dispatching policy
692 Priority_Specific_Policy : constant Character := Get_Policy (Prio);
693 -- Upper case first character of the policy name corresponding to the
694 -- task as set by a Priority_Specific_Dispatching pragma.
696 begin
697 Param.sched_priority := Interfaces.C.int (Prio);
699 if Time_Slice_Supported
700 and then (Dispatching_Policy = 'R'
701 or else Priority_Specific_Policy = 'R'
702 or else Time_Slice_Val > 0)
703 then
704 Result := pthread_setschedparam
705 (T.Common.LL.Thread, SCHED_RR, Param'Access);
707 elsif Dispatching_Policy = 'F'
708 or else Priority_Specific_Policy = 'F'
709 or else Time_Slice_Val = 0
710 then
711 Result := pthread_setschedparam
712 (T.Common.LL.Thread, SCHED_FIFO, Param'Access);
714 else
715 Result := pthread_setschedparam
716 (T.Common.LL.Thread, SCHED_OTHER, Param'Access);
717 end if;
719 pragma Assert (Result = 0);
720 end Set_OS_Priority;
722 type Prio_Array_Type is array (System.Any_Priority) of Integer;
723 pragma Atomic_Components (Prio_Array_Type);
724 Prio_Array : Prio_Array_Type;
725 -- Comments needed for these declarations ???
727 procedure Set_Priority
728 (T : Task_Id;
729 Prio : System.Any_Priority;
730 Loss_Of_Inheritance : Boolean := False)
732 Array_Item : Integer;
734 begin
735 Set_OS_Priority (T, Prio);
737 if Locking_Policy = 'C' then
738 -- Annex D requirements: loss of inheritance puts task at the
739 -- beginning of the queue for that prio; copied from 5ztaprop
740 -- (VxWorks)
742 if Loss_Of_Inheritance
743 and then Prio < T.Common.Current_Priority then
745 Array_Item := Prio_Array (T.Common.Base_Priority) + 1;
746 Prio_Array (T.Common.Base_Priority) := Array_Item;
748 loop
749 Yield;
750 exit when Array_Item = Prio_Array (T.Common.Base_Priority)
751 or else Prio_Array (T.Common.Base_Priority) = 1;
752 end loop;
754 Prio_Array (T.Common.Base_Priority) :=
755 Prio_Array (T.Common.Base_Priority) - 1;
756 end if;
757 end if;
759 T.Common.Current_Priority := Prio;
760 end Set_Priority;
762 ------------------
763 -- Get_Priority --
764 ------------------
766 function Get_Priority (T : Task_Id) return System.Any_Priority is
767 begin
768 return T.Common.Current_Priority;
769 end Get_Priority;
771 ----------------
772 -- Enter_Task --
773 ----------------
775 procedure Enter_Task (Self_ID : Task_Id) is
776 begin
777 Self_ID.Common.LL.Thread := pthread_self;
778 Self_ID.Common.LL.LWP := lwp_self;
780 Specific.Set (Self_ID);
782 Lock_RTS;
784 for J in Known_Tasks'Range loop
785 if Known_Tasks (J) = null then
786 Known_Tasks (J) := Self_ID;
787 Self_ID.Known_Tasks_Index := J;
788 exit;
789 end if;
790 end loop;
792 Unlock_RTS;
793 end Enter_Task;
795 --------------
796 -- New_ATCB --
797 --------------
799 function New_ATCB (Entry_Num : Task_Entry_Index) return Task_Id is
800 begin
801 return new Ada_Task_Control_Block (Entry_Num);
802 end New_ATCB;
804 -------------------
805 -- Is_Valid_Task --
806 -------------------
808 function Is_Valid_Task return Boolean renames Specific.Is_Valid_Task;
810 -----------------------------
811 -- Register_Foreign_Thread --
812 -----------------------------
814 function Register_Foreign_Thread return Task_Id is
815 begin
816 if Is_Valid_Task then
817 return Self;
818 else
819 return Register_Foreign_Thread (pthread_self);
820 end if;
821 end Register_Foreign_Thread;
823 --------------------
824 -- Initialize_TCB --
825 --------------------
827 procedure Initialize_TCB (Self_ID : Task_Id; Succeeded : out Boolean) is
828 Mutex_Attr : aliased pthread_mutexattr_t;
829 Result : Interfaces.C.int;
830 Cond_Attr : aliased pthread_condattr_t;
832 begin
833 -- Give the task a unique serial number
835 Self_ID.Serial_Number := Next_Serial_Number;
836 Next_Serial_Number := Next_Serial_Number + 1;
837 pragma Assert (Next_Serial_Number /= 0);
839 if not Single_Lock then
840 Result := pthread_mutexattr_init (Mutex_Attr'Access);
841 pragma Assert (Result = 0 or else Result = ENOMEM);
843 if Result = 0 then
844 Result := pthread_mutex_init (Self_ID.Common.LL.L'Access,
845 Mutex_Attr'Access);
846 pragma Assert (Result = 0 or else Result = ENOMEM);
847 end if;
849 if Result /= 0 then
850 Succeeded := False;
851 return;
852 end if;
854 Result := pthread_mutexattr_destroy (Mutex_Attr'Access);
855 pragma Assert (Result = 0);
856 end if;
858 Result := pthread_condattr_init (Cond_Attr'Access);
859 pragma Assert (Result = 0 or else Result = ENOMEM);
861 if Result = 0 then
862 Result := pthread_cond_init (Self_ID.Common.LL.CV'Access,
863 Cond_Attr'Access);
864 pragma Assert (Result = 0 or else Result = ENOMEM);
865 end if;
867 if Result = 0 then
868 Succeeded := True;
869 else
870 if not Single_Lock then
871 Result := pthread_mutex_destroy (Self_ID.Common.LL.L'Access);
872 pragma Assert (Result = 0);
873 end if;
875 Succeeded := False;
876 end if;
878 Result := pthread_condattr_destroy (Cond_Attr'Access);
879 pragma Assert (Result = 0);
880 end Initialize_TCB;
882 -----------------
883 -- Create_Task --
884 -----------------
886 procedure Create_Task
887 (T : Task_Id;
888 Wrapper : System.Address;
889 Stack_Size : System.Parameters.Size_Type;
890 Priority : System.Any_Priority;
891 Succeeded : out Boolean)
893 Attributes : aliased pthread_attr_t;
894 Adjusted_Stack_Size : Interfaces.C.size_t;
895 Result : Interfaces.C.int;
897 use System.Task_Info;
899 begin
900 Adjusted_Stack_Size := Interfaces.C.size_t (Stack_Size);
902 if Stack_Base_Available then
904 -- If Stack Checking is supported then allocate 2 additional pages:
906 -- In the worst case, stack is allocated at something like
907 -- N * Get_Page_Size - epsilon, we need to add the size for 2 pages
908 -- to be sure the effective stack size is greater than what
909 -- has been asked.
911 Adjusted_Stack_Size := Adjusted_Stack_Size + 2 * Get_Page_Size;
912 end if;
914 Result := pthread_attr_init (Attributes'Access);
915 pragma Assert (Result = 0 or else Result = ENOMEM);
917 if Result /= 0 then
918 Succeeded := False;
919 return;
920 end if;
922 Result := pthread_attr_setdetachstate
923 (Attributes'Access, PTHREAD_CREATE_DETACHED);
924 pragma Assert (Result = 0);
926 Result := pthread_attr_setstacksize
927 (Attributes'Access, Adjusted_Stack_Size);
928 pragma Assert (Result = 0);
930 if T.Common.Task_Info /= Default_Scope then
932 -- We are assuming that Scope_Type has the same values than the
933 -- corresponding C macros
935 Result := pthread_attr_setscope
936 (Attributes'Access, Task_Info_Type'Pos (T.Common.Task_Info));
937 pragma Assert (Result = 0);
938 end if;
940 -- Since the initial signal mask of a thread is inherited from the
941 -- creator, and the Environment task has all its signals masked, we
942 -- do not need to manipulate caller's signal mask at this point.
943 -- All tasks in RTS will have All_Tasks_Mask initially.
945 Result := pthread_create
946 (T.Common.LL.Thread'Access,
947 Attributes'Access,
948 Thread_Body_Access (Wrapper),
949 To_Address (T));
950 pragma Assert (Result = 0 or else Result = EAGAIN);
952 Succeeded := Result = 0;
954 Result := pthread_attr_destroy (Attributes'Access);
955 pragma Assert (Result = 0);
957 Set_Priority (T, Priority);
958 end Create_Task;
960 ------------------
961 -- Finalize_TCB --
962 ------------------
964 procedure Finalize_TCB (T : Task_Id) is
965 Result : Interfaces.C.int;
966 Tmp : Task_Id := T;
967 Is_Self : constant Boolean := T = Self;
969 procedure Free is new
970 Unchecked_Deallocation (Ada_Task_Control_Block, Task_Id);
972 begin
973 if not Single_Lock then
974 Result := pthread_mutex_destroy (T.Common.LL.L'Access);
975 pragma Assert (Result = 0);
976 end if;
978 Result := pthread_cond_destroy (T.Common.LL.CV'Access);
979 pragma Assert (Result = 0);
981 if T.Known_Tasks_Index /= -1 then
982 Known_Tasks (T.Known_Tasks_Index) := null;
983 end if;
985 Free (Tmp);
987 if Is_Self then
988 Result := st_setspecific (ATCB_Key, System.Null_Address);
989 pragma Assert (Result = 0);
990 end if;
992 end Finalize_TCB;
994 ---------------
995 -- Exit_Task --
996 ---------------
998 procedure Exit_Task is
999 begin
1000 Specific.Set (null);
1001 end Exit_Task;
1003 ----------------
1004 -- Abort_Task --
1005 ----------------
1007 procedure Abort_Task (T : Task_Id) is
1008 Result : Interfaces.C.int;
1009 begin
1010 Result := pthread_kill (T.Common.LL.Thread,
1011 Signal (System.Interrupt_Management.Abort_Task_Interrupt));
1012 pragma Assert (Result = 0);
1013 end Abort_Task;
1015 ----------------
1016 -- Initialize --
1017 ----------------
1019 procedure Initialize (S : in out Suspension_Object) is
1020 Mutex_Attr : aliased pthread_mutexattr_t;
1021 Cond_Attr : aliased pthread_condattr_t;
1022 Result : Interfaces.C.int;
1024 begin
1025 -- Initialize internal state. It is always initialized to False (ARM
1026 -- D.10 par. 6).
1028 S.State := False;
1029 S.Waiting := False;
1031 -- Initialize internal mutex
1033 Result := pthread_mutexattr_init (Mutex_Attr'Access);
1034 pragma Assert (Result = 0 or else Result = ENOMEM);
1036 if Result = ENOMEM then
1037 raise Storage_Error;
1038 end if;
1040 Result := pthread_mutex_init (S.L'Access, Mutex_Attr'Access);
1041 pragma Assert (Result = 0 or else Result = ENOMEM);
1043 if Result = ENOMEM then
1044 Result := pthread_mutexattr_destroy (Mutex_Attr'Access);
1045 pragma Assert (Result = 0);
1047 raise Storage_Error;
1048 end if;
1050 Result := pthread_mutexattr_destroy (Mutex_Attr'Access);
1051 pragma Assert (Result = 0);
1053 -- Initialize internal condition variable
1055 Result := pthread_condattr_init (Cond_Attr'Access);
1056 pragma Assert (Result = 0 or else Result = ENOMEM);
1058 if Result /= 0 then
1059 Result := pthread_mutex_destroy (S.L'Access);
1060 pragma Assert (Result = 0);
1062 if Result = ENOMEM then
1063 raise Storage_Error;
1064 end if;
1065 end if;
1067 Result := pthread_cond_init (S.CV'Access, Cond_Attr'Access);
1068 pragma Assert (Result = 0 or else Result = ENOMEM);
1070 if Result /= 0 then
1071 Result := pthread_mutex_destroy (S.L'Access);
1072 pragma Assert (Result = 0);
1074 if Result = ENOMEM then
1075 Result := pthread_condattr_destroy (Cond_Attr'Access);
1076 pragma Assert (Result = 0);
1078 raise Storage_Error;
1079 end if;
1080 end if;
1082 Result := pthread_condattr_destroy (Cond_Attr'Access);
1083 pragma Assert (Result = 0);
1084 end Initialize;
1086 --------------
1087 -- Finalize --
1088 --------------
1090 procedure Finalize (S : in out Suspension_Object) is
1091 Result : Interfaces.C.int;
1092 begin
1093 -- Destroy internal mutex
1095 Result := pthread_mutex_destroy (S.L'Access);
1096 pragma Assert (Result = 0);
1098 -- Destroy internal condition variable
1100 Result := pthread_cond_destroy (S.CV'Access);
1101 pragma Assert (Result = 0);
1102 end Finalize;
1104 -------------------
1105 -- Current_State --
1106 -------------------
1108 function Current_State (S : Suspension_Object) return Boolean is
1109 begin
1110 -- We do not want to use lock on this read operation. State is marked
1111 -- as Atomic so that we ensure that the value retrieved is correct.
1113 return S.State;
1114 end Current_State;
1116 ---------------
1117 -- Set_False --
1118 ---------------
1120 procedure Set_False (S : in out Suspension_Object) is
1121 Result : Interfaces.C.int;
1122 begin
1123 SSL.Abort_Defer.all;
1125 Result := pthread_mutex_lock (S.L'Access);
1126 pragma Assert (Result = 0);
1128 S.State := False;
1130 Result := pthread_mutex_unlock (S.L'Access);
1131 pragma Assert (Result = 0);
1133 SSL.Abort_Undefer.all;
1134 end Set_False;
1136 --------------
1137 -- Set_True --
1138 --------------
1140 procedure Set_True (S : in out Suspension_Object) is
1141 Result : Interfaces.C.int;
1142 begin
1143 SSL.Abort_Defer.all;
1145 Result := pthread_mutex_lock (S.L'Access);
1146 pragma Assert (Result = 0);
1148 -- If there is already a task waiting on this suspension object then
1149 -- we resume it, leaving the state of the suspension object to False,
1150 -- as it is specified in ARM D.10 par. 9. Otherwise, it just leaves
1151 -- the state to True.
1153 if S.Waiting then
1154 S.Waiting := False;
1155 S.State := False;
1157 Result := pthread_cond_signal (S.CV'Access);
1158 pragma Assert (Result = 0);
1159 else
1160 S.State := True;
1161 end if;
1163 Result := pthread_mutex_unlock (S.L'Access);
1164 pragma Assert (Result = 0);
1166 SSL.Abort_Undefer.all;
1167 end Set_True;
1169 ------------------------
1170 -- Suspend_Until_True --
1171 ------------------------
1173 procedure Suspend_Until_True (S : in out Suspension_Object) is
1174 Result : Interfaces.C.int;
1175 begin
1176 SSL.Abort_Defer.all;
1178 Result := pthread_mutex_lock (S.L'Access);
1179 pragma Assert (Result = 0);
1181 if S.Waiting then
1182 -- Program_Error must be raised upon calling Suspend_Until_True
1183 -- if another task is already waiting on that suspension object
1184 -- (ARM D.10 par. 10).
1186 Result := pthread_mutex_unlock (S.L'Access);
1187 pragma Assert (Result = 0);
1189 SSL.Abort_Undefer.all;
1191 raise Program_Error;
1192 else
1193 -- Suspend the task if the state is False. Otherwise, the task
1194 -- continues its execution, and the state of the suspension object
1195 -- is set to False (ARM D.10 par. 9).
1197 if S.State then
1198 S.State := False;
1199 else
1200 S.Waiting := True;
1201 Result := pthread_cond_wait (S.CV'Access, S.L'Access);
1202 end if;
1204 Result := pthread_mutex_unlock (S.L'Access);
1205 pragma Assert (Result = 0);
1207 SSL.Abort_Undefer.all;
1208 end if;
1209 end Suspend_Until_True;
1211 ----------------
1212 -- Check_Exit --
1213 ----------------
1215 -- Dummy versions
1217 function Check_Exit (Self_ID : ST.Task_Id) return Boolean is
1218 pragma Unreferenced (Self_ID);
1219 begin
1220 return True;
1221 end Check_Exit;
1223 --------------------
1224 -- Check_No_Locks --
1225 --------------------
1227 function Check_No_Locks (Self_ID : ST.Task_Id) return Boolean is
1228 pragma Unreferenced (Self_ID);
1229 begin
1230 return True;
1231 end Check_No_Locks;
1233 ----------------------
1234 -- Environment_Task --
1235 ----------------------
1237 function Environment_Task return Task_Id is
1238 begin
1239 return Environment_Task_Id;
1240 end Environment_Task;
1242 --------------
1243 -- Lock_RTS --
1244 --------------
1246 procedure Lock_RTS is
1247 begin
1248 Write_Lock (Single_RTS_Lock'Access, Global_Lock => True);
1249 end Lock_RTS;
1251 ----------------
1252 -- Unlock_RTS --
1253 ----------------
1255 procedure Unlock_RTS is
1256 begin
1257 Unlock (Single_RTS_Lock'Access, Global_Lock => True);
1258 end Unlock_RTS;
1260 ------------------
1261 -- Suspend_Task --
1262 ------------------
1264 function Suspend_Task
1265 (T : ST.Task_Id;
1266 Thread_Self : Thread_Id) return Boolean
1268 pragma Unreferenced (T);
1269 pragma Unreferenced (Thread_Self);
1270 begin
1271 return False;
1272 end Suspend_Task;
1274 -----------------
1275 -- Resume_Task --
1276 -----------------
1278 function Resume_Task
1279 (T : ST.Task_Id;
1280 Thread_Self : Thread_Id) return Boolean
1282 pragma Unreferenced (T);
1283 pragma Unreferenced (Thread_Self);
1284 begin
1285 return False;
1286 end Resume_Task;
1288 ----------------
1289 -- Initialize --
1290 ----------------
1292 procedure Initialize (Environment_Task : Task_Id) is
1293 act : aliased struct_sigaction;
1294 old_act : aliased struct_sigaction;
1295 Tmp_Set : aliased sigset_t;
1296 Result : Interfaces.C.int;
1298 function State
1299 (Int : System.Interrupt_Management.Interrupt_ID) return Character;
1300 pragma Import (C, State, "__gnat_get_interrupt_state");
1301 -- Get interrupt state. Defined in a-init.c
1302 -- The input argument is the interrupt number,
1303 -- and the result is one of the following:
1305 Default : constant Character := 's';
1306 -- 'n' this interrupt not set by any Interrupt_State pragma
1307 -- 'u' Interrupt_State pragma set state to User
1308 -- 'r' Interrupt_State pragma set state to Runtime
1309 -- 's' Interrupt_State pragma set state to System (use "default"
1310 -- system handler)
1312 begin
1313 Environment_Task_Id := Environment_Task;
1315 Interrupt_Management.Initialize;
1317 -- Prepare the set of signals that should unblocked in all tasks
1319 Result := sigemptyset (Unblocked_Signal_Mask'Access);
1320 pragma Assert (Result = 0);
1322 for J in Interrupt_Management.Interrupt_ID loop
1323 if System.Interrupt_Management.Keep_Unmasked (J) then
1324 Result := sigaddset (Unblocked_Signal_Mask'Access, Signal (J));
1325 pragma Assert (Result = 0);
1326 end if;
1327 end loop;
1329 -- Initialize the lock used to synchronize chain of all ATCBs
1331 Initialize_Lock (Single_RTS_Lock'Access, RTS_Lock_Level);
1333 Specific.Initialize (Environment_Task);
1335 Enter_Task (Environment_Task);
1337 -- Install the abort-signal handler
1339 if State (System.Interrupt_Management.Abort_Task_Interrupt)
1340 /= Default
1341 then
1342 act.sa_flags := 0;
1343 act.sa_handler := Abort_Handler'Address;
1345 Result := sigemptyset (Tmp_Set'Access);
1346 pragma Assert (Result = 0);
1347 act.sa_mask := Tmp_Set;
1349 Result :=
1350 sigaction
1351 (Signal (System.Interrupt_Management.Abort_Task_Interrupt),
1352 act'Unchecked_Access,
1353 old_act'Unchecked_Access);
1355 pragma Assert (Result = 0);
1356 end if;
1357 end Initialize;
1359 end System.Task_Primitives.Operations;