Recent changes made to the runtime library broke again its build on Solaris
because it uses Solaris threads instead of POSIX threads on this platform.
gcc/ada/
PR ada/115168
* libgnarl/s-taprop__solaris.adb (Initialize): Fix pasto.
* libgnat/s-oslock__solaris.ads (Owner_Int): Delete.
(Owner_ID): Change the designated type to Integer.
begin
Environment_Task_Id := Environment_Task;
- Self_ID.Common.LL.Thread := thr_self;
+ Environment_Task.Common.LL.Thread := thr_self;
Interrupt_Management.Initialize;
type Private_Task_Serial_Number is mod 2 ** Long_Long_Integer'Size;
-- Used to give each task a unique serial number
- type Owner_Int is new Integer;
- for Owner_Int'Alignment use Standard'Maximum_Alignment;
-
- type Owner_ID is access all Owner_Int;
+ type Owner_ID is access all Integer;
function To_Owner_ID is
new Ada.Unchecked_Conversion (System.Address, Owner_ID);