1 ------------------------------------------------------------------------------
3 -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS --
5 -- S Y S T E M . T A S K _ P R I M I T I V E S . O P E R A T I O N S --
10 -- Copyright (C) 1992-2001, Free Software Foundation, Inc. --
12 -- GNARL is free software; you can redistribute it and/or modify it under --
13 -- terms of the GNU General Public License as published by the Free Soft- --
14 -- ware Foundation; either version 2, or (at your option) any later ver- --
15 -- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
18 -- for more details. You should have received a copy of the GNU General --
19 -- Public License distributed with GNARL; see file COPYING. If not, write --
20 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
21 -- MA 02111-1307, USA. --
23 -- As a special exception, if other files instantiate generics from this --
24 -- unit, or you link this unit with other files to produce an executable, --
25 -- this unit does not by itself cause the resulting executable to be --
26 -- covered by the GNU General Public License. This exception does not --
27 -- however invalidate any other reasons why the executable file might be --
28 -- covered by the GNU Public License. --
30 -- GNARL was developed by the GNARL team at Florida State University. It is --
31 -- now maintained by Ada Core Technologies, Inc. (http://www.gnat.com). --
33 ------------------------------------------------------------------------------
35 -- This is a DEC Unix 4.0d version of this package
37 -- This package contains all the GNULL primitives that interface directly
38 -- with the underlying OS.
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
.Task_Info
;
48 -- used for Task_Info_Type
51 -- used for Shift_Left
57 with System
.Interrupt_Management
;
58 -- used for Keep_Unmasked
59 -- Abort_Task_Interrupt
62 with System
.Interrupt_Management
.Operations
;
63 -- used for Set_Interrupt_Mask
65 pragma Elaborate_All
(System
.Interrupt_Management
.Operations
);
67 with System
.Parameters
;
71 -- used for Ada_Task_Control_Block
73 -- ATCB components and types
75 with System
.Soft_Links
;
76 -- used for Defer/Undefer_Abort
78 -- Note that we do not use System.Tasking.Initialization directly since
79 -- this is a higher level package that we shouldn't depend on. For example
80 -- when using the restricted run time, it is replaced by
81 -- System.Tasking.Restricted.Initialization
83 with System
.OS_Primitives
;
84 -- used for Delay_Modes
86 with Unchecked_Conversion
;
87 with Unchecked_Deallocation
;
89 package body System
.Task_Primitives
.Operations
is
91 use System
.Tasking
.Debug
;
94 use System
.OS_Interface
;
95 use System
.Parameters
;
96 use System
.OS_Primitives
;
98 package SSL
renames System
.Soft_Links
;
104 -- The followings are logically constants, but need to be initialized
107 Single_RTS_Lock
: aliased RTS_Lock
;
108 -- This is a lock to allow only one thread of control in the RTS at
109 -- a time; it is used to execute in mutual exclusion from all other tasks.
110 -- Used mainly in Single_Lock mode, but also to protect All_Tasks_List
112 Environment_Task_ID
: Task_ID
;
113 -- A variable to hold Task_ID for the environment task.
115 Unblocked_Signal_Mask
: aliased sigset_t
;
116 -- The set of signals that should unblocked in all tasks
118 Time_Slice_Val
: Integer;
119 pragma Import
(C
, Time_Slice_Val
, "__gl_time_slice_val");
121 Locking_Policy
: Character;
122 pragma Import
(C
, Locking_Policy
, "__gl_locking_policy");
124 Dispatching_Policy
: Character;
125 pragma Import
(C
, Dispatching_Policy
, "__gl_task_dispatching_policy");
127 FIFO_Within_Priorities
: constant Boolean := Dispatching_Policy
= 'F';
128 -- Indicates whether FIFO_Within_Priorities is set.
132 -----------------------
133 -- Local Subprograms --
134 -----------------------
136 procedure Abort_Handler
(Sig
: Signal
);
138 function To_Task_ID
is new Unchecked_Conversion
(System
.Address
, Task_ID
);
140 function To_Address
is new Unchecked_Conversion
(Task_ID
, System
.Address
);
148 procedure Initialize
(Environment_Task
: Task_ID
);
149 pragma Inline
(Initialize
);
150 -- Initialize various data needed by this package.
152 procedure Set
(Self_Id
: Task_ID
);
154 -- Set the self id for the current task.
156 function Self
return Task_ID
;
157 pragma Inline
(Self
);
158 -- Return a pointer to the Ada Task Control Block of the calling task.
162 package body Specific
is separate;
163 -- The body of this package is target specific.
169 procedure Abort_Handler
(Sig
: Signal
) is
170 T
: constant Task_ID
:= Self
;
171 Result
: Interfaces
.C
.int
;
172 Old_Set
: aliased sigset_t
;
175 if T
.Deferral_Level
= 0
176 and then T
.Pending_ATC_Level
< T
.ATC_Nesting_Level
and then
181 -- Make sure signals used for RTS internal purpose are unmasked
183 Result
:= pthread_sigmask
(SIG_UNBLOCK
,
184 Unblocked_Signal_Mask
'Unchecked_Access, Old_Set
'Unchecked_Access);
185 pragma Assert
(Result
= 0);
187 raise Standard
'Abort_Signal;
195 -- The underlying thread system sets a guard page at the
196 -- bottom of a thread stack, so nothing is needed.
198 procedure Stack_Guard
(T
: ST
.Task_ID
; On
: Boolean) is
207 function Get_Thread_Id
(T
: ST
.Task_ID
) return OSI
.Thread_Id
is
209 return T
.Common
.LL
.Thread
;
216 function Self
return Task_ID
renames Specific
.Self
;
218 ---------------------
219 -- Initialize_Lock --
220 ---------------------
222 -- Note: mutexes and cond_variables needed per-task basis are
223 -- initialized in Initialize_TCB and the Storage_Error is
224 -- handled. Other mutexes (such as RTS_Lock, Memory_Lock...)
225 -- used in RTS is initialized before any status change of RTS.
226 -- Therefore rasing Storage_Error in the following routines
227 -- should be able to be handled safely.
229 procedure Initialize_Lock
230 (Prio
: System
.Any_Priority
;
233 Attributes
: aliased pthread_mutexattr_t
;
234 Result
: Interfaces
.C
.int
;
237 Result
:= pthread_mutexattr_init
(Attributes
'Access);
238 pragma Assert
(Result
= 0 or else Result
= ENOMEM
);
240 if Result
= ENOMEM
then
244 if Locking_Policy
= 'C' then
245 L
.Ceiling
:= Interfaces
.C
.int
(Prio
);
248 Result
:= pthread_mutex_init
(L
.L
'Access, Attributes
'Access);
249 pragma Assert
(Result
= 0 or else Result
= ENOMEM
);
251 if Result
= ENOMEM
then
252 Result
:= pthread_mutexattr_destroy
(Attributes
'Access);
256 Result
:= pthread_mutexattr_destroy
(Attributes
'Access);
257 pragma Assert
(Result
= 0);
260 procedure Initialize_Lock
(L
: access RTS_Lock
; Level
: Lock_Level
) is
261 Attributes
: aliased pthread_mutexattr_t
;
262 Result
: Interfaces
.C
.int
;
265 Result
:= pthread_mutexattr_init
(Attributes
'Access);
266 pragma Assert
(Result
= 0 or else Result
= ENOMEM
);
268 if Result
= ENOMEM
then
272 Result
:= pthread_mutex_init
(L
, Attributes
'Access);
273 pragma Assert
(Result
= 0 or else Result
= ENOMEM
);
275 if Result
= ENOMEM
then
276 Result
:= pthread_mutexattr_destroy
(Attributes
'Access);
280 Result
:= pthread_mutexattr_destroy
(Attributes
'Access);
281 pragma Assert
(Result
= 0);
288 procedure Finalize_Lock
(L
: access Lock
) is
289 Result
: Interfaces
.C
.int
;
291 Result
:= pthread_mutex_destroy
(L
.L
'Access);
292 pragma Assert
(Result
= 0);
295 procedure Finalize_Lock
(L
: access RTS_Lock
) is
296 Result
: Interfaces
.C
.int
;
298 Result
:= pthread_mutex_destroy
(L
);
299 pragma Assert
(Result
= 0);
306 procedure Write_Lock
(L
: access Lock
; Ceiling_Violation
: out Boolean) is
307 Result
: Interfaces
.C
.int
;
309 All_Tasks_Link
: Task_ID
;
310 Current_Prio
: System
.Any_Priority
;
313 -- Perform ceiling checks only when this is the locking policy in use.
315 if Locking_Policy
= 'C' then
317 All_Tasks_Link
:= Self_ID
.Common
.All_Tasks_Link
;
318 Current_Prio
:= Get_Priority
(Self_ID
);
320 -- If there is no other task, no need to check priorities
322 if All_Tasks_Link
/= Null_Task
323 and then L
.Ceiling
< Interfaces
.C
.int
(Current_Prio
)
325 Ceiling_Violation
:= True;
330 Result
:= pthread_mutex_lock
(L
.L
'Access);
331 pragma Assert
(Result
= 0);
333 Ceiling_Violation
:= False;
337 (L
: access RTS_Lock
; Global_Lock
: Boolean := False)
339 Result
: Interfaces
.C
.int
;
341 if not Single_Lock
or else Global_Lock
then
342 Result
:= pthread_mutex_lock
(L
);
343 pragma Assert
(Result
= 0);
347 procedure Write_Lock
(T
: Task_ID
) is
348 Result
: Interfaces
.C
.int
;
350 if not Single_Lock
then
351 Result
:= pthread_mutex_lock
(T
.Common
.LL
.L
'Access);
352 pragma Assert
(Result
= 0);
360 procedure Read_Lock
(L
: access Lock
; Ceiling_Violation
: out Boolean) is
362 Write_Lock
(L
, Ceiling_Violation
);
369 procedure Unlock
(L
: access Lock
) is
370 Result
: Interfaces
.C
.int
;
372 Result
:= pthread_mutex_unlock
(L
.L
'Access);
373 pragma Assert
(Result
= 0);
376 procedure Unlock
(L
: access RTS_Lock
; Global_Lock
: Boolean := False) is
377 Result
: Interfaces
.C
.int
;
379 if not Single_Lock
or else Global_Lock
then
380 Result
:= pthread_mutex_unlock
(L
);
381 pragma Assert
(Result
= 0);
385 procedure Unlock
(T
: Task_ID
) is
386 Result
: Interfaces
.C
.int
;
388 if not Single_Lock
then
389 Result
:= pthread_mutex_unlock
(T
.Common
.LL
.L
'Access);
390 pragma Assert
(Result
= 0);
400 Reason
: System
.Tasking
.Task_States
)
402 Result
: Interfaces
.C
.int
;
405 Result
:= pthread_cond_wait
406 (Self_ID
.Common
.LL
.CV
'Access, Single_RTS_Lock
'Access);
408 Result
:= pthread_cond_wait
409 (Self_ID
.Common
.LL
.CV
'Access, Self_ID
.Common
.LL
.L
'Access);
412 -- EINTR is not considered a failure.
414 pragma Assert
(Result
= 0 or else Result
= EINTR
);
421 -- This is for use within the run-time system, so abort is
422 -- assumed to be already deferred, and the caller should be
423 -- holding its own ATCB lock.
425 procedure Timed_Sleep
428 Mode
: ST
.Delay_Modes
;
429 Reason
: System
.Tasking
.Task_States
;
430 Timedout
: out Boolean;
431 Yielded
: out Boolean)
433 Check_Time
: constant Duration := Monotonic_Clock
;
435 Request
: aliased timespec
;
436 Result
: Interfaces
.C
.int
;
442 if Mode
= Relative
then
443 Abs_Time
:= Duration'Min (Time
, Max_Sensible_Delay
) + Check_Time
;
445 Abs_Time
:= Duration'Min (Check_Time
+ Max_Sensible_Delay
, Time
);
448 if Abs_Time
> Check_Time
then
449 Request
:= To_Timespec
(Abs_Time
);
452 exit when Self_ID
.Pending_ATC_Level
< Self_ID
.ATC_Nesting_Level
453 or else Self_ID
.Pending_Priority_Change
;
456 Result
:= pthread_cond_timedwait
457 (Self_ID
.Common
.LL
.CV
'Access, Single_RTS_Lock
'Access,
461 Result
:= pthread_cond_timedwait
462 (Self_ID
.Common
.LL
.CV
'Access, Self_ID
.Common
.LL
.L
'Access,
466 exit when Abs_Time
<= Monotonic_Clock
;
468 if Result
= 0 or Result
= EINTR
then
469 -- somebody may have called Wakeup for us
474 pragma Assert
(Result
= ETIMEDOUT
);
483 -- This is for use in implementing delay statements, so
484 -- we assume the caller is abort-deferred but is holding
487 procedure Timed_Delay
490 Mode
: ST
.Delay_Modes
)
492 Check_Time
: constant Duration := Monotonic_Clock
;
494 Request
: aliased timespec
;
495 Result
: Interfaces
.C
.int
;
498 -- Only the little window between deferring abort and
499 -- locking Self_ID is the reason we need to
500 -- check for pending abort and priority change below! :(
508 Write_Lock
(Self_ID
);
510 if Mode
= Relative
then
511 Abs_Time
:= Time
+ Check_Time
;
513 Abs_Time
:= Duration'Min (Check_Time
+ Max_Sensible_Delay
, Time
);
516 if Abs_Time
> Check_Time
then
517 Request
:= To_Timespec
(Abs_Time
);
518 Self_ID
.Common
.State
:= Delay_Sleep
;
521 if Self_ID
.Pending_Priority_Change
then
522 Self_ID
.Pending_Priority_Change
:= False;
523 Self_ID
.Common
.Base_Priority
:= Self_ID
.New_Base_Priority
;
524 Set_Priority
(Self_ID
, Self_ID
.Common
.Base_Priority
);
527 exit when Self_ID
.Pending_ATC_Level
< Self_ID
.ATC_Nesting_Level
;
530 Result
:= pthread_cond_timedwait
(Self_ID
.Common
.LL
.CV
'Access,
531 Single_RTS_Lock
'Access, Request
'Access);
533 Result
:= pthread_cond_timedwait
(Self_ID
.Common
.LL
.CV
'Access,
534 Self_ID
.Common
.LL
.L
'Access, Request
'Access);
537 exit when Abs_Time
<= Monotonic_Clock
;
539 pragma Assert
(Result
= 0 or else
540 Result
= ETIMEDOUT
or else
544 Self_ID
.Common
.State
:= Runnable
;
554 SSL
.Abort_Undefer
.all;
557 ---------------------
558 -- Monotonic_Clock --
559 ---------------------
561 function Monotonic_Clock
return Duration is
562 TS
: aliased timespec
;
563 Result
: Interfaces
.C
.int
;
566 Result
:= clock_gettime
(CLOCK_REALTIME
, TS
'Unchecked_Access);
567 pragma Assert
(Result
= 0);
568 return To_Duration
(TS
);
575 function RT_Resolution
return Duration is
577 return 1.0 / 1024.0; -- Clock on DEC Alpha ticks at 1024 Hz
584 procedure Wakeup
(T
: Task_ID
; Reason
: System
.Tasking
.Task_States
) is
585 Result
: Interfaces
.C
.int
;
587 Result
:= pthread_cond_signal
(T
.Common
.LL
.CV
'Access);
588 pragma Assert
(Result
= 0);
595 procedure Yield
(Do_Yield
: Boolean := True) is
596 Result
: Interfaces
.C
.int
;
599 Result
:= sched_yield
;
607 procedure Set_Priority
609 Prio
: System
.Any_Priority
;
610 Loss_Of_Inheritance
: Boolean := False)
612 Result
: Interfaces
.C
.int
;
613 Param
: aliased struct_sched_param
;
616 T
.Common
.Current_Priority
:= Prio
;
617 Param
.sched_priority
:= Interfaces
.C
.int
(Underlying_Priorities
(Prio
));
619 if Time_Slice_Val
> 0 then
620 Result
:= pthread_setschedparam
621 (T
.Common
.LL
.Thread
, SCHED_RR
, Param
'Access);
623 elsif FIFO_Within_Priorities
or else Time_Slice_Val
= 0 then
624 Result
:= pthread_setschedparam
625 (T
.Common
.LL
.Thread
, SCHED_FIFO
, Param
'Access);
628 Result
:= pthread_setschedparam
629 (T
.Common
.LL
.Thread
, SCHED_OTHER
, Param
'Access);
632 pragma Assert
(Result
= 0);
639 function Get_Priority
(T
: Task_ID
) return System
.Any_Priority
is
641 return T
.Common
.Current_Priority
;
648 procedure Enter_Task
(Self_ID
: Task_ID
) is
650 Self_ID
.Common
.LL
.Thread
:= pthread_self
;
651 Specific
.Set
(Self_ID
);
655 for J
in Known_Tasks
'Range loop
656 if Known_Tasks
(J
) = null then
657 Known_Tasks
(J
) := Self_ID
;
658 Self_ID
.Known_Tasks_Index
:= J
;
670 function New_ATCB
(Entry_Num
: Task_Entry_Index
) return Task_ID
is
672 return new Ada_Task_Control_Block
(Entry_Num
);
679 procedure Initialize_TCB
(Self_ID
: Task_ID
; Succeeded
: out Boolean) is
680 Mutex_Attr
: aliased pthread_mutexattr_t
;
681 Result
: Interfaces
.C
.int
;
682 Cond_Attr
: aliased pthread_condattr_t
;
685 if not Single_Lock
then
686 Result
:= pthread_mutexattr_init
(Mutex_Attr
'Access);
687 pragma Assert
(Result
= 0 or else Result
= ENOMEM
);
690 Result
:= pthread_mutex_init
(Self_ID
.Common
.LL
.L
'Access,
692 pragma Assert
(Result
= 0 or else Result
= ENOMEM
);
700 Result
:= pthread_mutexattr_destroy
(Mutex_Attr
'Access);
701 pragma Assert
(Result
= 0);
704 Result
:= pthread_condattr_init
(Cond_Attr
'Access);
705 pragma Assert
(Result
= 0 or else Result
= ENOMEM
);
708 Result
:= pthread_cond_init
(Self_ID
.Common
.LL
.CV
'Access,
710 pragma Assert
(Result
= 0 or else Result
= ENOMEM
);
716 if not Single_Lock
then
717 Result
:= pthread_mutex_destroy
(Self_ID
.Common
.LL
.L
'Access);
718 pragma Assert
(Result
= 0);
724 Result
:= pthread_condattr_destroy
(Cond_Attr
'Access);
725 pragma Assert
(Result
= 0);
732 procedure Create_Task
734 Wrapper
: System
.Address
;
735 Stack_Size
: System
.Parameters
.Size_Type
;
736 Priority
: System
.Any_Priority
;
737 Succeeded
: out Boolean)
739 Attributes
: aliased pthread_attr_t
;
740 Adjusted_Stack_Size
: Interfaces
.C
.size_t
;
741 Result
: Interfaces
.C
.int
;
742 Param
: aliased System
.OS_Interface
.struct_sched_param
;
744 function Thread_Body_Access
is new
745 Unchecked_Conversion
(System
.Address
, Thread_Body
);
747 use System
.Task_Info
;
750 if Stack_Size
= Unspecified_Size
then
751 Adjusted_Stack_Size
:= Interfaces
.C
.size_t
(Default_Stack_Size
);
753 elsif Stack_Size
< Minimum_Stack_Size
then
754 Adjusted_Stack_Size
:= Interfaces
.C
.size_t
(Minimum_Stack_Size
);
757 Adjusted_Stack_Size
:= Interfaces
.C
.size_t
(Stack_Size
);
760 Result
:= pthread_attr_init
(Attributes
'Access);
761 pragma Assert
(Result
= 0 or else Result
= ENOMEM
);
768 Result
:= pthread_attr_setdetachstate
769 (Attributes
'Access, PTHREAD_CREATE_DETACHED
);
770 pragma Assert
(Result
= 0);
772 Result
:= pthread_attr_setstacksize
773 (Attributes
'Access, Adjusted_Stack_Size
);
774 pragma Assert
(Result
= 0);
776 -- Set the scheduling parameters explicitly, since this is the only
777 -- way to force the OS to take the scope attribute into account
779 Result
:= pthread_attr_setinheritsched
780 (Attributes
'Access, PTHREAD_EXPLICIT_SCHED
);
781 pragma Assert
(Result
= 0);
783 Param
.sched_priority
:=
784 Interfaces
.C
.int
(Underlying_Priorities
(Priority
));
785 Result
:= pthread_attr_setschedparam
786 (Attributes
'Access, Param
'Access);
787 pragma Assert
(Result
= 0);
789 if Time_Slice_Val
> 0 then
790 Result
:= pthread_attr_setschedpolicy
791 (Attributes
'Access, System
.OS_Interface
.SCHED_RR
);
793 elsif FIFO_Within_Priorities
or else Time_Slice_Val
= 0 then
794 Result
:= pthread_attr_setschedpolicy
795 (Attributes
'Access, System
.OS_Interface
.SCHED_FIFO
);
798 Result
:= pthread_attr_setschedpolicy
799 (Attributes
'Access, System
.OS_Interface
.SCHED_OTHER
);
802 pragma Assert
(Result
= 0);
804 T
.Common
.Current_Priority
:= Priority
;
806 if T
.Common
.Task_Info
/= null then
807 case T
.Common
.Task_Info
.Contention_Scope
is
808 when System
.Task_Info
.Process_Scope
=>
809 Result
:= pthread_attr_setscope
810 (Attributes
'Access, PTHREAD_SCOPE_PROCESS
);
812 when System
.Task_Info
.System_Scope
=>
813 Result
:= pthread_attr_setscope
814 (Attributes
'Access, PTHREAD_SCOPE_SYSTEM
);
816 when System
.Task_Info
.Default_Scope
=>
820 pragma Assert
(Result
= 0);
823 -- Since the initial signal mask of a thread is inherited from the
824 -- creator, and the Environment task has all its signals masked, we
825 -- do not need to manipulate caller's signal mask at this point.
826 -- All tasks in RTS will have All_Tasks_Mask initially.
828 Result
:= pthread_create
829 (T
.Common
.LL
.Thread
'Access,
831 Thread_Body_Access
(Wrapper
),
833 pragma Assert
(Result
= 0 or else Result
= EAGAIN
);
835 Succeeded
:= Result
= 0;
837 Result
:= pthread_attr_destroy
(Attributes
'Access);
838 pragma Assert
(Result
= 0);
840 if T
.Common
.Task_Info
/= null then
841 if T
.Common
.Task_Info
.Bind_To_Cpu_Number
= 0 then
842 Result
:= bind_to_cpu
(Curpid
, 0);
843 elsif T
.Common
.Task_Info
.Bind_To_Cpu_Number
> 0 then
844 Result
:= bind_to_cpu
846 Interfaces
.C
.unsigned_long
(
847 Interfaces
.Shift_Left
848 (Interfaces
.Unsigned_64
'(1),
849 T.Common.Task_Info.Bind_To_Cpu_Number - 1)));
850 pragma Assert (Result = 0);
859 procedure Finalize_TCB (T : Task_ID) is
860 Result : Interfaces.C.int;
863 procedure Free is new
864 Unchecked_Deallocation (Ada_Task_Control_Block, Task_ID);
867 if not Single_Lock then
868 Result := pthread_mutex_destroy (T.Common.LL.L'Access);
869 pragma Assert (Result = 0);
872 Result := pthread_cond_destroy (T.Common.LL.CV'Access);
873 pragma Assert (Result = 0);
875 if T.Known_Tasks_Index /= -1 then
876 Known_Tasks (T.Known_Tasks_Index) := null;
886 procedure Exit_Task is
888 pthread_exit (System.Null_Address);
895 procedure Abort_Task (T : Task_ID) is
896 Result : Interfaces.C.int;
899 Result := pthread_kill (T.Common.LL.Thread,
900 Signal (System.Interrupt_Management.Abort_Task_Interrupt));
901 pragma Assert (Result = 0);
908 -- Dummy versions. The only currently working versions is for solaris
911 function Check_Exit (Self_ID : ST.Task_ID) return Boolean is
920 function Check_No_Locks (Self_ID : ST.Task_ID) return Boolean is
925 ----------------------
926 -- Environment_Task --
927 ----------------------
929 function Environment_Task return Task_ID is
931 return Environment_Task_ID;
932 end Environment_Task;
938 procedure Lock_RTS is
940 Write_Lock (Single_RTS_Lock'Access, Global_Lock => True);
947 procedure Unlock_RTS is
949 Unlock (Single_RTS_Lock'Access, Global_Lock => True);
956 function Suspend_Task
958 Thread_Self : Thread_Id) return Boolean is
969 Thread_Self : Thread_Id) return Boolean is
978 procedure Initialize (Environment_Task : Task_ID) is
979 act : aliased struct_sigaction;
980 old_act : aliased struct_sigaction;
981 Tmp_Set : aliased sigset_t;
982 Result : Interfaces.C.int;
985 Environment_Task_ID := Environment_Task;
987 Initialize_Lock (Single_RTS_Lock'Access, RTS_Lock_Level);
988 -- Initialize the lock used to synchronize chain of all ATCBs.
990 Specific.Initialize (Environment_Task);
992 Enter_Task (Environment_Task);
994 -- Install the abort-signal handler
997 act.sa_handler := Abort_Handler'Address;
999 Result := sigemptyset (Tmp_Set'Access);
1000 pragma Assert (Result = 0);
1001 act.sa_mask := Tmp_Set;
1005 (Signal (System.Interrupt_Management.Abort_Task_Interrupt),
1006 act'Unchecked_Access,
1007 old_act'Unchecked_Access);
1008 pragma Assert (Result = 0);
1013 Result : Interfaces.C.int;
1015 -- Mask Environment task for all signals. The original mask of the
1016 -- Environment task will be recovered by Interrupt_Server task
1017 -- during the elaboration of s-interr.adb.
1019 System.Interrupt_Management.Operations.Set_Interrupt_Mask
1020 (System.Interrupt_Management.Operations.All_Tasks_Mask'Access);
1022 -- Prepare the set of signals that should unblocked in all tasks
1024 Result := sigemptyset (Unblocked_Signal_Mask'Access);
1025 pragma Assert (Result = 0);
1027 for J in Interrupt_Management.Interrupt_ID loop
1028 if System.Interrupt_Management.Keep_Unmasked (J) then
1029 Result := sigaddset (Unblocked_Signal_Mask'Access, Signal (J));
1030 pragma Assert (Result = 0);
1036 end System.Task_Primitives.Operations;