view gcc/testsuite/gnat.dg/test_prio.adb @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents 04ced10e8804
children
line wrap: on
line source

-- { dg-do run }
-- { dg-options "-gnatws" }

pragma Locking_Policy (Ceiling_Locking);
with test_prio_p;use test_prio_p;
with text_io; use text_io;
procedure Test_Prio is
   task Tsk is
      pragma Priority (10);
   end Tsk;
   task body Tsk is
   begin   
      Sema2.Seize;
      Sema1.Seize;
      Put_Line ("error");
   exception
      when Program_Error => null;  -- OK
   end;    
begin   
   null;   
end;