public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug ada/11385] cannot catch Ada exceptions
       [not found] <bug-11385-4717@http.sourceware.org/bugzilla/>
@ 2011-10-19 14:17 ` simon at pushface dot org
  2011-10-19 14:29 ` simon at pushface dot org
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: simon at pushface dot org @ 2011-10-19 14:17 UTC (permalink / raw)
  To: gdb-prs

http://sourceware.org/bugzilla/show_bug.cgi?id=11385

Simon Wright <simon at pushface dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |simon at pushface dot org

--- Comment #1 from Simon Wright <simon at pushface dot org> 2011-10-19 14:17:29 UTC ---
I find the same with the GDB git tree (at commit
4b8a2e28391c990494a9eb60adcbd840af952fe6, Wed Oct 19 07:17:11 2011 +0000) on
Mac OS X Lion, debugging a GCC 4.6.0 program.

I think there's something about the way ada-lang.c sniffs for the Ada-specific
symbols that fails to find the required symbol (it looks for
__gnat_debug_raise_exception, in s-except.o), though I haven't yet been able to
spot any difference; the arguments passed to lookup_symbol_aux() look the same.
Should I dig deeper?

If I first set an ordinary breakpoint on that symbol
   (gdb) break __gnat_debug_raise_exception
then "catch exception" works!

This problem doesn't happen with GNAT GPL 2011-generated code, which is based
on GCC 4.5.3.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug ada/11385] cannot catch Ada exceptions
       [not found] <bug-11385-4717@http.sourceware.org/bugzilla/>
  2011-10-19 14:17 ` [Bug ada/11385] cannot catch Ada exceptions simon at pushface dot org
@ 2011-10-19 14:29 ` simon at pushface dot org
  2011-10-19 19:55 ` simon at pushface dot org
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: simon at pushface dot org @ 2011-10-19 14:29 UTC (permalink / raw)
  To: gdb-prs

http://sourceware.org/bugzilla/show_bug.cgi?id=11385

--- Comment #2 from Simon Wright <simon at pushface dot org> 2011-10-19 14:28:16 UTC ---
It seems to be something about the way GCC 4.6.0 generates object code; if I
write hi.c

void __gnat_debug_raise_exception(void)
{
}

int main(void)
{
  return 0;
}

and compile with GCC 4.6.0, 'catch exception' works first time (in other words,
the ada-lang.c lookup is OK).

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug ada/11385] cannot catch Ada exceptions
       [not found] <bug-11385-4717@http.sourceware.org/bugzilla/>
  2011-10-19 14:17 ` [Bug ada/11385] cannot catch Ada exceptions simon at pushface dot org
  2011-10-19 14:29 ` simon at pushface dot org
@ 2011-10-19 19:55 ` simon at pushface dot org
  2011-10-20 12:49 ` simon at pushface dot org
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: simon at pushface dot org @ 2011-10-19 19:55 UTC (permalink / raw)
  To: gdb-prs

http://sourceware.org/bugzilla/show_bug.cgi?id=11385

--- Comment #3 from Simon Wright <simon at pushface dot org> 2011-10-19 19:55:27 UTC ---
When 'break __gnat_debug_raise_exception' finds the symbol, it actually finds
it in lookup_minimal_symbol() in minsyms.c, after attempts via lookup_symbol()
have failed. The backtrace is

#0  lookup_minimal_symbol (name=0x7fff5fbfee00 "__gnat_debug_raise_exception",
sfile=0x0, objf=0x0) at minsyms.c:299
#1  0x000000010017a41a in decode_variable (copy=0x7fff5fbfee00
"__gnat_debug_raise_exception", funfirstline=1, canonical=0x7fff5fbff208,
file_symtab=0x0) at linespec.c:2125
#2  0x00000001001777d4 in decode_line_1 (argptr=0x7fff5fbff2d0, funfirstline=1,
default_symtab=0x0, default_line=0, canonical=0x7fff5fbff208) at
linespec.c:1072
#3  0x0000000100102e9e in parse_breakpoint_sals (address=0x7fff5fbff2d0,
sals=0x7fff5fbff260, canonical=0x7fff5fbff208) at breakpoint.c:7591
#4  0x0000000100103be2 in create_breakpoint (gdbarch=0x1010a5a10,
arg=0x100a0a1ce "", cond_string=0x0, thread=0, parse_condition_and_thread=1,
tempflag=0, type_wanted=bp_breakpoint, ignore_count=0,
pending_break_support=AUTO_BOOLEAN_AUTO, ops=0x1005f74c0, from_tty=1,
enabled=1, internal=0) at breakpoint.c:7825

Can we alter the check in ada-lang.c to use lookup_minimal_symbol()? What makes
it a minimal symbol when compiled by Ada (s-except.adb) rather than C (my hi.c,
in Comment 2)?

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug ada/11385] cannot catch Ada exceptions
       [not found] <bug-11385-4717@http.sourceware.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2011-10-19 19:55 ` simon at pushface dot org
@ 2011-10-20 12:49 ` simon at pushface dot org
  2012-01-30  6:47 ` fw at deneb dot enyo.de
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: simon at pushface dot org @ 2011-10-20 12:49 UTC (permalink / raw)
  To: gdb-prs

http://sourceware.org/bugzilla/show_bug.cgi?id=11385

--- Comment #4 from Simon Wright <simon at pushface dot org> 2011-10-20 12:49:28 UTC ---
Results unchanged with gcc-4.7-180238.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug ada/11385] cannot catch Ada exceptions
       [not found] <bug-11385-4717@http.sourceware.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2011-10-20 12:49 ` simon at pushface dot org
@ 2012-01-30  6:47 ` fw at deneb dot enyo.de
  2012-02-02 11:22 ` simon at pushface dot org
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: fw at deneb dot enyo.de @ 2012-01-30  6:47 UTC (permalink / raw)
  To: gdb-prs

http://sourceware.org/bugzilla/show_bug.cgi?id=11385

fw at deneb dot enyo.de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fw at deneb dot enyo.de

--- Comment #5 from fw at deneb dot enyo.de 2012-01-30 06:46:09 UTC ---
(In reply to comment #3)

> Can we alter the check in ada-lang.c to use lookup_minimal_symbol()? What makes
> it a minimal symbol when compiled by Ada (s-except.adb) rather than C (my hi.c,
> in Comment 2)?

I think minimal symbols are symbols which do not come from debugging
information.  Does Ada support work even if the run-time library is dynamically
linked and compiled without debugging information?  Then using the minimal
symbol seems okay.  Otherwise, GDB should just print a better error message,
and the fix is not to strip the Ada run-time libraries.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug ada/11385] cannot catch Ada exceptions
       [not found] <bug-11385-4717@http.sourceware.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2012-01-30  6:47 ` fw at deneb dot enyo.de
@ 2012-02-02 11:22 ` simon at pushface dot org
  2014-05-22 11:25 ` simon at pushface dot org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: simon at pushface dot org @ 2012-02-02 11:22 UTC (permalink / raw)
  To: gdb-prs

http://sourceware.org/bugzilla/show_bug.cgi?id=11385

--- Comment #6 from Simon Wright <simon at pushface dot org> 2012-02-02 11:22:19 UTC ---
(In reply to comment #5)
> I think minimal symbols are symbols which do not come from debugging
> information.  Does Ada support work even if the run-time library is dynamically
> linked and compiled without debugging information?  Then using the minimal
> symbol seems okay.  Otherwise, GDB should just print a better error message,
> and the fix is not to strip the Ada run-time libraries.

I believe the dynamic Ada run-time libraries are stripped, but when an Ada
program is built with -g, it uses the static Ada libraries.

The Makefile for the Ada RTS (for 4.7) explicitly compiles s-excdeb.adb, which
is where 4.7 keeps the problematic symbol, for debugging:

# compile s-excdeb.o without optimization and with debug info to let the
# debugger set breakpoints and inspect subprogram parameters on exception
# related events.

In 4.6, the symbol’s in s-except.adb, I don’t have the source tree to hand but
I expect it’s the same.

In case there’s any stripping going on during RTS installation, I rebuilt my
test program with an explicit recompilation of s-except:

$ gnatmake -c -u -f -g
/opt/gcc-4.6.0-x86_64/lib/gcc/x86_64-apple-darwin10/4.6.0/adainclude/s-except.adb
-O0
gcc -gnatpg -c
-I/opt/gcc-4.6.0-x86_64/lib/gcc/x86_64-apple-darwin10/4.6.0/adainclude/ -g -O0
-I-
/opt/gcc-4.6.0-x86_64/lib/gcc/x86_64-apple-darwin10/4.6.0/adainclude/s-except.adb

$ gnatmake -g -a stbga.adb -largs -v
gnatbind -x stbga.ali
gnatlink stbga.ali -g -v

GNATLINK 4.6.0
Copyright (C) 1995-2010, Free Software Foundation, Inc.
gcc -c -g -gnatA -gnatWb -gnatiw -g -gnatws /Users/simon/tmp/b~stbga.adb
/opt/gcc-4.6.0-x86_64/bin/gcc b~stbga.o ./s-except.o ./stbga.o -g -o stbga -L./
-L/opt/gcc-4.6.0-x86_64/lib/gcc/x86_64-apple-darwin10/4.6.0/adalib/
/opt/gcc-4.6.0-x86_64/lib/gcc/x86_64-apple-darwin10/4.6.0/adalib/libgnat.a

(note the explicit “./s-except.o” & the link against the installed libgnat.a)

but still

$ gdb stbga
GNU gdb (GDB) 7.3.50.20111019-cvs
Copyright (C) 2011 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-apple-darwin11".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /Users/simon/tmp/stbga...
warning: can't find section '*UND*' in OSO file
/opt/gcc-4.6.0-x86_64/lib/gcc/x86_64-apple-darwin10/4.6.0/adalib/libgnat.a(targext.o)
done.
(gdb) catch exception
Unable to insert catchpoint. Try to start the program first.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug ada/11385] cannot catch Ada exceptions
       [not found] <bug-11385-4717@http.sourceware.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2012-02-02 11:22 ` simon at pushface dot org
@ 2014-05-22 11:25 ` simon at pushface dot org
  2014-05-24 16:46 ` simon at pushface dot org
  2014-09-07 20:09 ` jan.kratochvil at redhat dot com
  8 siblings, 0 replies; 9+ messages in thread
From: simon at pushface dot org @ 2014-05-22 11:25 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=11385

--- Comment #7 from Simon Wright <simon at pushface dot org> ---
I still get this problem with GDB 7.7, GCC 4.9.0 on x86_64-apple-darwin13.

Using dwarfdump --debug-info, hi.o (see my comment #2) says

0x0000009b:     TAG_subprogram [2]
                 AT_external( 0x01 )
                 AT_name( "__gnat_debug_raise_exception" )
                 AT_decl_file( "/Users/simon/tmp/hi.c" )
                 AT_decl_line( 1 )
                 AT_prototyped( 0x01 )
                 AT_low_pc( 0x0000000000000000 )
                 AT_high_pc( 0x0000000000000001 )
                 AT_frame_base( rsp+8 )

whereas the RTS s-excdeb.o says

0x0000024b:     TAG_subprogram [9] *
                 AT_external( 0x01 )
                 AT_name( "system__exceptions_debug__debug_raise_exception" )
                 AT_decl_file(
"/Users/simon/tmp/gcc-4.9.0/gcc/ada/s-excdeb.adb" )
                 AT_decl_line( 40 )
                 AT_MIPS_linkage_name( "__gnat_debug_raise_exception" )
                 AT_prototyped( 0x01 )
                 AT_low_pc( 0x0000000000000000 )
                 AT_high_pc( 0x000000000000000c )
                 AT_frame_base( 0x00000000
                    0x0000000000000000 - 0x0000000000000001: rsp+8
                    0x0000000000000001 - 0x0000000000000004: rsp+16
                    0x0000000000000004 - 0x000000000000000b: rbp+16
                    0x000000000000000b - 0x000000000000000c: rsp+8 )
                 AT_sibling( {0x000002c2} )

and there’s one obvious difference: in the C version, the AT_Name is the one
being looked for (__gnat_debug_raise_exception), whereas in the Ada version
it’s the AT_MIPS_linkage_name.

standard_lookup() (ada-lang.c:4259) says
  sym = lookup_symbol_in_language (name, block, domain, language_c, 0);

Could it be the ‘language_c’ that’s the problem? .. will check further (I see
that standard_lookup() is called in several places, so maybe not).

-- 
You are receiving this mail because:
You are on the CC list for the bug.
>From gdb-prs-return-15766-listarch-gdb-prs=sources.redhat.com@sourceware.org Thu May 22 11:55:47 2014
Return-Path: <gdb-prs-return-15766-listarch-gdb-prs=sources.redhat.com@sourceware.org>
Delivered-To: listarch-gdb-prs@sources.redhat.com
Received: (qmail 29368 invoked by alias); 22 May 2014 11:55:46 -0000
Mailing-List: contact gdb-prs-help@sourceware.org; run by ezmlm
Precedence: bulk
List-Id: <gdb-prs.sourceware.org>
List-Subscribe: <mailto:gdb-prs-subscribe@sourceware.org>
List-Archive: <http://sourceware.org/ml/gdb-prs/>
List-Post: <mailto:gdb-prs@sourceware.org>
List-Help: <mailto:gdb-prs-help@sourceware.org>, <http://sourceware.org/lists.html#faqs>
Sender: gdb-prs-owner@sourceware.org
Delivered-To: mailing list gdb-prs@sourceware.org
Received: (qmail 29319 invoked by uid 48); 22 May 2014 11:55:46 -0000
From: "vogt at linux dot vnet.ibm.com" <sourceware-bugzilla@sourceware.org>
To: gdb-prs@sourceware.org
Subject: [Bug gdb/16762] GDB doesn't update display size when host terminal
 resizes
Date: Thu, 22 May 2014 11:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gdb
X-Bugzilla-Component: gdb
X-Bugzilla-Version: 7.6
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: vogt at linux dot vnet.ibm.com
X-Bugzilla-Status: NEW
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at sourceware dot org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-16762-4717-KO1MfsXkZE@http.sourceware.org/bugzilla/>
In-Reply-To: <bug-16762-4717@http.sourceware.org/bugzilla/>
References: <bug-16762-4717@http.sourceware.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://sourceware.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2014-q2/txt/msg00272.txt.bz2
Content-length: 473

https://sourceware.org/bugzilla/show_bug.cgi?id\x16762

vogt at linux dot vnet.ibm.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vogt at linux dot vnet.ibm.com

--- Comment #1 from vogt at linux dot vnet.ibm.com ---
Gdb seems to ignore sigwinch.

--
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug ada/11385] cannot catch Ada exceptions
       [not found] <bug-11385-4717@http.sourceware.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2014-05-22 11:25 ` simon at pushface dot org
@ 2014-05-24 16:46 ` simon at pushface dot org
  2014-09-07 20:09 ` jan.kratochvil at redhat dot com
  8 siblings, 0 replies; 9+ messages in thread
From: simon at pushface dot org @ 2014-05-24 16:46 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=11385

--- Comment #8 from Simon Wright <simon at pushface dot org> ---
(In reply to Simon Wright from comment #7)

Well, that was misleading.

Current state of investigation (all work on Mac OS X 10.9.2/10.9.3 (Darwin
13.1.0/13.2.0), GDB 7.7:

If the program being debugged was built with GNAT GPL 2011/2/3/4, then
everything is OK.

If the program being debugged was built with FSF GCC 4.6/7/8/9 the problem
arises; ‘catch exception’ fails.

One cure is to reference one of the symbols in s-excdeb.o first, perhaps by
printing it:

Reading symbols from inf...done.
(gdb) catch exception
Your Ada runtime appears to be missing some debugging information.
Cannot insert Ada exception catchpoint in this configuration.
(gdb) p __gnat_debug_raise_exception
$1 = {<text variable, no debug info>} 0x10000b692
<__gnat_debug_raise_exception>
(gdb) catch exception
Catchpoint 1: all Ada exceptions

Another is to read all the symbols to start with:

$ gdb -readnow foo
[...]
Reading symbols from inf...expanding to full symbols...done.
(gdb) catch exception
Catchpoint 1: all Ada exceptions

'p __gnat_debug_raise_exception’ actually reports the minsym, but for some
reason then goes on to read the full symbol, i.e. to load the symtab, which is
what ‘catch exception’ requires.

So far I haven’t been able to work out why using different compilers should
affect this result.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
>From gdb-prs-return-15770-listarch-gdb-prs=sources.redhat.com@sourceware.org Sun May 25 09:24:50 2014
Return-Path: <gdb-prs-return-15770-listarch-gdb-prs=sources.redhat.com@sourceware.org>
Delivered-To: listarch-gdb-prs@sources.redhat.com
Received: (qmail 24646 invoked by alias); 25 May 2014 09:24:50 -0000
Mailing-List: contact gdb-prs-help@sourceware.org; run by ezmlm
Precedence: bulk
List-Id: <gdb-prs.sourceware.org>
List-Subscribe: <mailto:gdb-prs-subscribe@sourceware.org>
List-Archive: <http://sourceware.org/ml/gdb-prs/>
List-Post: <mailto:gdb-prs@sourceware.org>
List-Help: <mailto:gdb-prs-help@sourceware.org>, <http://sourceware.org/lists.html#faqs>
Sender: gdb-prs-owner@sourceware.org
Delivered-To: mailing list gdb-prs@sourceware.org
Received: (qmail 24524 invoked by uid 48); 25 May 2014 09:24:49 -0000
From: "jan.kratochvil at redhat dot com" <sourceware-bugzilla@sourceware.org>
To: gdb-prs@sourceware.org
Subject: [Bug corefiles/11804] Fix -Wl,-z,relro gcore writer (+maybe reader)
Date: Sun, 25 May 2014 09:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gdb
X-Bugzilla-Component: corefiles
X-Bugzilla-Version: HEAD
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jan.kratochvil at redhat dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: jan.kratochvil at redhat dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: blocked
Message-ID: <bug-11804-4717-wp32pSWJrc@http.sourceware.org/bugzilla/>
In-Reply-To: <bug-11804-4717@http.sourceware.org/bugzilla/>
References: <bug-11804-4717@http.sourceware.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://sourceware.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2014-q2/txt/msg00276.txt.bz2
Content-length: 381

https://sourceware.org/bugzilla/show_bug.cgi?id\x11804

Jan Kratochvil <jan.kratochvil at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Blocks|                            |16981

--
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug ada/11385] cannot catch Ada exceptions
       [not found] <bug-11385-4717@http.sourceware.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2014-05-24 16:46 ` simon at pushface dot org
@ 2014-09-07 20:09 ` jan.kratochvil at redhat dot com
  8 siblings, 0 replies; 9+ messages in thread
From: jan.kratochvil at redhat dot com @ 2014-09-07 20:09 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=11385

Jan Kratochvil <jan.kratochvil at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |brobecker at adacore dot com,
                   |                            |jan.kratochvil at redhat dot com

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2014-09-07 20:09 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-11385-4717@http.sourceware.org/bugzilla/>
2011-10-19 14:17 ` [Bug ada/11385] cannot catch Ada exceptions simon at pushface dot org
2011-10-19 14:29 ` simon at pushface dot org
2011-10-19 19:55 ` simon at pushface dot org
2011-10-20 12:49 ` simon at pushface dot org
2012-01-30  6:47 ` fw at deneb dot enyo.de
2012-02-02 11:22 ` simon at pushface dot org
2014-05-22 11:25 ` simon at pushface dot org
2014-05-24 16:46 ` simon at pushface dot org
2014-09-07 20:09 ` jan.kratochvil at redhat dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).