Your message dated Thu, 25 Nov 2010 12:41:14 +0100
with message-id <8817c4fa113ed15d54ab08d9f9a68...@localhost>
and subject line gnat-4.3: symbolic tracebacks broken; raise Storage_Error
has caused the Debian Bug report #582485,
regarding gnat-4.3: symbolic tracebacks broken; raise Storage_Error
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
582485: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582485
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: gnat-4.3
Version: 4.3.0-1
Severity: important
(from Björn Persson):
with Ada.Text_IO;
with GNAT.Traceback.Symbolic;
procedure Stack_Trace_Test is
Oopsie : Exception;
procedure Eledile is
begin
raise Oopsie with "How unfortunate!";
end Eledile;
procedure Crocophant is
begin
Eledile;
end Crocophant;
begin
Crocophant;
exception
when E : others =>
Ada.Text_IO.Put_Line(GNAT.Traceback.Symbolic.Symbolic_Traceback(E));
end Stack_Trace_Test;
$ gnatmake stack_trace_test.adb -g -bargs -E
gcc-4.3 -c -g stack_trace_test.adb
gnatbind -E -x stack_trace_test.ali
gnatlink stack_trace_test.ali -g
$ ./stack_trace_test
Execution terminated by unhandled exception
Exception name: STORAGE_ERROR
Message: stack overflow (or erroneous memory access)
Call stack traceback locations:
0xb7e7c56b
$ addr2line --functions --exe=stack_trace_test 0xb7e7c56b
??
??:0
--- End Message ---
--- Begin Message ---
Fixed in gnat-4.4, please upgrade to Debian 6.0 "Squeeze" to get it.
--- End Message ---