aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/s-traceb.ads
diff options
context:
space:
mode:
authorBob Duff <duff@adacore.com>2014-07-30 14:22:38 +0000
committerArnaud Charlet <charlet@gcc.gnu.org>2014-07-30 16:22:38 +0200
commit734e72dde61bef5ab77f5f18c2a9e6b979098fba (patch)
tree877430b800fdde011a4f0d7ba771a78097f2395f /gcc/ada/s-traceb.ads
parentd6e8719dd8e883b61121fede6e78e34012c84c9b (diff)
downloadgcc-734e72dde61bef5ab77f5f18c2a9e6b979098fba.zip
gcc-734e72dde61bef5ab77f5f18c2a9e6b979098fba.tar.gz
gcc-734e72dde61bef5ab77f5f18c2a9e6b979098fba.tar.bz2
a-except-2005.adb, [...]: Remove obsolete comments.
2014-07-30 Bob Duff <duff@adacore.com> * a-except-2005.adb, a-except.adb: Remove obsolete comments. * s-traceb.ads: Updagte comments. From-SVN: r213281
Diffstat (limited to 'gcc/ada/s-traceb.ads')
-rw-r--r--gcc/ada/s-traceb.ads9
1 files changed, 4 insertions, 5 deletions
diff --git a/gcc/ada/s-traceb.ads b/gcc/ada/s-traceb.ads
index b149268..67affcd 100644
--- a/gcc/ada/s-traceb.ads
+++ b/gcc/ada/s-traceb.ads
@@ -54,17 +54,16 @@ package System.Traceback is
Exclude_Min : System.Address := System.Null_Address;
Exclude_Max : System.Address := System.Null_Address;
Skip_Frames : Natural := 1);
- -- Store up to Max_Len code locations in Traceback, corresponding to
- -- the current call chain.
+ -- Store up to Max_Len code locations in Traceback, corresponding to the
+ -- current call chain.
--
- -- Traceback is the address of an array of addresses where the
- -- result will be stored.
+ -- Traceback is an array of addresses where the result will be stored.
--
-- Max_Len is the length of the Traceback array. If the call chain is
-- longer than this, then additional entries are discarded, and the
-- traceback is missing some of the highest level entries.
--
- -- Len is the returned number of addresses stored in the Traceback array
+ -- Len is the number of addresses returned in the Traceback array
--
-- Exclude_Min/Exclude_Max, if non null, provide a range of addresses
-- to ignore from the computation of the traceback.