[Ada] Minor comment rework in GNAT.Secondary_Stack_Info
authorBob Duff <duff@adacore.com>
Wed, 30 May 2018 08:57:38 +0000 (08:57 +0000)
committerPierre-Marie de Rodat <pmderodat@gcc.gnu.org>
Wed, 30 May 2018 08:57:38 +0000 (08:57 +0000)
2018-05-30  Bob Duff  <duff@adacore.com>

gcc/ada/

* libgnat/g-sestin.ads: Rework documentation comments.

From-SVN: r260936

gcc/ada/ChangeLog
gcc/ada/libgnat/g-sestin.ads

index 8a5b510269d022e03928546283a1e80af54a3ed2..330a11e7ab64d00b93b4a5493011a3179a86da9b 100644 (file)
@@ -1,3 +1,7 @@
+2018-05-30  Bob Duff  <duff@adacore.com>
+
+       * libgnat/g-sestin.ads: Rework documentation comments.
+
 2018-05-30  Piotr Trojanek  <trojanek@adacore.com>
 
        * errout.adb, exp_aggr.adb, exp_ch7.adb, exp_util.adb, lib.adb,
index 82ab20011627b39b447fabab2746c62fdc74c014..58ad3fc9239ee684dfa252032627e7b378d87865 100644 (file)
@@ -30,7 +30,7 @@
 ------------------------------------------------------------------------------
 
 --  This package provides facilities for obtaining information on secondary
---  stack usage.
+--  stack usage. See System.Secondary_Stack for documentation.
 
 with System.Secondary_Stack;
 
@@ -38,11 +38,5 @@ package GNAT.Secondary_Stack_Info is
 
    function SS_Get_Max return Long_Long_Integer
      renames System.Secondary_Stack.SS_Get_Max;
-   --  Return maximum used space in storage units for the current secondary
-   --  stack. For a dynamically allocated secondary stack, the returned
-   --  result is always -1. For a statically allocated secondary stack,
-   --  the returned value shows the largest amount of space allocated so
-   --  far during execution of the program to the current secondary stack,
-   --  i.e. the secondary stack for the current task.
 
 end GNAT.Secondary_Stack_Info;