diff options
author | Andris Pavenis <andris.pavenis@iki.fi> | 2012-05-16 01:33:58 +0300 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2012-05-15 22:33:58 +0000 |
commit | 57c9dc678fc0ec109a7c16a31e4bf06c6acad422 (patch) | |
tree | c0bb3780618631556da9e70c25864cc232f2ae67 /gcc/ada/s-taprop-dummy.adb | |
parent | 87fd4bbf208d460e523cb56a501f63d3aab47cc5 (diff) | |
download | gcc-57c9dc678fc0ec109a7c16a31e4bf06c6acad422.zip gcc-57c9dc678fc0ec109a7c16a31e4bf06c6acad422.tar.gz gcc-57c9dc678fc0ec109a7c16a31e4bf06c6acad422.tar.bz2 |
re PR ada/52494 (s-taprop-dummy.adb does not define subpackage Specific used in s-tpoaal.sdb)
PR ada/52494
* s-taprop-dummy.adb (Specific): New package.
From-SVN: r187562
Diffstat (limited to 'gcc/ada/s-taprop-dummy.adb')
-rw-r--r-- | gcc/ada/s-taprop-dummy.adb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gcc/ada/s-taprop-dummy.adb b/gcc/ada/s-taprop-dummy.adb index f6e9a64..d5e91d2 100644 --- a/gcc/ada/s-taprop-dummy.adb +++ b/gcc/ada/s-taprop-dummy.adb @@ -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 -- ---------------------------------- |