summaryrefslogtreecommitdiff
path: root/gcc/ada/s-tasuti.ads
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2008-04-08 07:01:24 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2008-04-08 07:01:24 +0000
commitbb4b3b5ca3a2486a398123c2274e634cd368e774 (patch)
treee4766dcdf4b43b2dfd8e91d1dc6b2a8be6f7cd15 /gcc/ada/s-tasuti.ads
parentcb373d8cc04ecb6fe40f8500300cfc8bc57de67a (diff)
downloadgcc-bb4b3b5ca3a2486a398123c2274e634cd368e774.tar.gz
Use Task_Address instead of System.Address.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@134070 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/s-tasuti.ads')
-rw-r--r--gcc/ada/s-tasuti.ads5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/ada/s-tasuti.ads b/gcc/ada/s-tasuti.ads
index 286b5a0d70c..e47f0e49d2b 100644
--- a/gcc/ada/s-tasuti.ads
+++ b/gcc/ada/s-tasuti.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 1992-2007, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2008, Free Software Foundation, Inc. --
-- --
-- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -35,11 +35,12 @@
-- These declarations are not part of the GNARLI
with Ada.Unchecked_Conversion;
+with System.Task_Primitives;
package System.Tasking.Utilities is
function ATCB_To_Address is new
- Ada.Unchecked_Conversion (Task_Id, System.Address);
+ Ada.Unchecked_Conversion (Task_Id, System.Task_Primitives.Task_Address);
---------------------------------
-- Task_Stage Related routines --