]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR ada/52494 (s-taprop-dummy.adb does not define subpackage Specific used in s...
authorAndris Pavenis <andris.pavenis@iki.fi>
Tue, 15 May 2012 22:33:58 +0000 (01:33 +0300)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Tue, 15 May 2012 22:33:58 +0000 (22:33 +0000)
PR ada/52494
* s-taprop-dummy.adb (Specific): New package.

From-SVN: r187562

gcc/ada/ChangeLog
gcc/ada/s-taprop-dummy.adb

index f2727054d2399b6a83a772b98f2f0dfe1b5c6fb5..b67d659a127653b1bff9a193986442f74e2d10ee 100644 (file)
@@ -1,3 +1,8 @@
+2012-05-15  Andris Pavenis  <andris.pavenis@iki.fi>
+
+       PR ada/52494
+       * s-taprop-dummy.adb (Specific): New package.
+
 2012-05-15  Olivier Hainque  <hainque@adacore.com>
 
        * gcc-interface/Make-lang.in (COMMON_FLAGS_TO_PASS): Use WARN_CFLAGS
index f6e9a64cdc7a31a71fa8093fbdbe7fb2c687fc35..d5e91d2f408ad64e38d3d2720d37f2077f4c60b0 100644 (file)
@@ -46,6 +46,28 @@ package body System.Task_Primitives.Operations is
    pragma Warnings (Off);
    --  Turn off warnings since so many unreferenced parameters
 
+   --------------------
+   -- Local Packages --
+   --------------------
+
+   package Specific is
+
+      procedure Set (Self_Id : Task_Id);
+      pragma Inline (Set);
+      --  Set the self id for the current task
+
+   end Specific;
+
+   package body Specific is
+
+      procedure Set (Self_Id : Task_Id) is
+      begin
+         null;
+      end Set;
+
+   end Specific;
+   --  The body of this package is target specific
+
    ----------------------------------
    -- ATCB allocation/deallocation --
    ----------------------------------