OSDN Git Service

* gcc-interface/Makefile.in (gnatlib-shared-default): Append
[pf3gnuchains/gcc-fork.git] / gcc / ada / s-atocou.ads
index 5efcb35..cad18d2 100644 (file)
 ------------------------------------------------------------------------------
 
 --  This package provides atomic counter on platforms where it is supported:
---    ??? Please provide a list of such platforms
+--    - all Alpha platforms
+--    - all ia64 platforms
+--    - all PowerPC platforms
+--    - all SPARC V9 platforms
+--    - all x86 platforms
+--    - all x86_64 platforms
 
 --  Why isn't this package available to application programs???
 
@@ -67,7 +72,6 @@ private
    type Atomic_Counter is limited record
       Value : aliased Unsigned_32 := 1;
       pragma Atomic (Value);
-      pragma Volatile (Value);
    end record;
 
 end System.Atomic_Counters;