comp.lang.ada
 help / color / mirror / Atom feed
From: Robert A Duff <bobduff@shell01.TheWorld.com>
Subject: Re: Teaching new tricks to an old dog (C++ -->Ada)
Date: 14 Mar 2005 17:41:42 -0500
Date: 2005-03-14T17:41:42-05:00	[thread overview]
Message-ID: <wccekehyhnd.fsf@shell01.TheWorld.com> (raw)
In-Reply-To: 1136bh3li136dac@corp.supernews.com

Newsgroups: comp.lang.ada,comp.lang.c++,comp.realtime,comp.software-eng
Subject: Re: Teaching new tricks to an old dog (C++ -->Ada)
References: <4229bad9$0$1019$afc38c87@news.optusnet.com.au> <1110377260.350158.58730@z14g2000cwz.googlegroups.com> <hOJ6B0Xgm3Th@eisner.encompasserve.org> <wccu0ng6hie.fsf@shell01.TheWorld.com> <1136bh3li136dac@corp.supernews.com> <pan.2005.03.14.14.49.18.718254@linuxchip.demon.co.uk.uk.uk> <113bvkqbb8q0038@corp.supernews.com>
From: Robert A Duff <bobduff@shell01.TheWorld.com>
Organization: The World Public Access UNIX, Brookline, MA
User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2
Date: 14 Mar 2005 17:35:28 -0500
Message-ID: <wccsm2xn9e7.fsf@shell01.TheWorld.com>
Lines: 139
--text follows this line--
CTips <ctips@bestweb.net> writes:

> My knowledge of this is a little dated and hazy, so I could be wrong.
> 
> If we're doing something like:
>    foo()
>    {
>      int x, y;
>      bar()
>      {
>        int y;
>        gah()
>        {
>          use(x), use(y);
>         }
>       }
>     }
> 
> then, at run-time, in use(x), x comes from the stack-frame of the
> nearest invocation of foo() on the stack, and in use(y), y comes from
> the stack-frame of the nearest invocation of bar().

Right.  Note that multi-level nesting as in this example is rare in
languages that allow nesting.  (And of course nonexistent in languages
that don't!)  The vast majority of procedures are not nested (level 0),
some are nested (level 1), and extremely few are more nested (level 2 or
more).  So to implement this stuff efficiently, the compiler writer
should keep this in mind.

> There has to be a mechanism to identify the nearest invocation of
> foo()/bar(). There are, if I remember correctly, 4 mechanisms to find
> the invocation:
> - dynamic chaining: you just follow the back-chain pointers, stepping
> through all stack frames, till you come to the right stack frame.

I don't know of any compilers that do that.  To make that work, you'd
have to have some way to identify the "right" stack frame, and I can't
think of any way to do that efficiently.

> - static chianing: you maintain a separate chain (the static chain) that
> directly link to the stack frame of the enclosing functions. Thus the
> static chain for gah() would have the last invocation of bar() followed
> by the last invocation of foo().

That's the method I prefer.  The best way to think about it is: the
static link is an extra parameter passed to the called function.
Each nested function needs a parameter that somehow represents its
context.

Given that multi-level nesting is rare, the chain is usually length 1
(or we don't need to do anything at all, for the nonnested ones).

> - display: somewhat like the static chain, except its an array instead
> of a list

To me, that seems like an attempt to optimize multi-level nesting, which
is why I don't prefer it.

> - currying (?): this one I'm really hazy about, but, roughly, you passed
> pointers to the correct uplevel variables as extra arguments to the
> functions. Thus bar would be passed the pointer to x and gah would be
> passed pointers to x and y, as well as their other arguments, or
> something like that.

Yes, something like that makes sense; I view it as an optimization of
static chains.  It's not what I know as "currying", though, which is
something completely different.  In the example you gave, you can pass x
and y, not pointers to them.

> There were some additional nastinesses dealing with what happens when a
> nested function is passed as an argument

It's really no big deal.  When passing a nested procedure to an outer
one, you need to pass an extra parameter indicating the enclosing
context.  When using static chains, this is just the static link.
Or, in some cases, optimize by doing what you called "currying" above.
(Which is just like optimizing by passing the components of a struct
instead of passing a pointer to it.)

Note that Ada distinguishes (syntactically) the case where the passed
procedure can be nested, and the case where it cannot.  The case where
it cannot is handled exactly as in C -- pass just the address of the
procedure's code.

(Actually, that's an oversimplification -- the nonnested case is really
the same-nested case, which includes the C case of nonnested.)

Or, in many cases, inline the whole mess, and there's no call overhead
at all.

Yes, there is some cost -- it complexifies the compiler, for one thing.
But the run-time cost is really near zero.

By the way, there's another method you didn't mention.  The gcc dialect
of C supports nested functions (and passing those as parameters), and
they're implemented using trampolines.

> Depending on the techinques, you either pay whenever you access
> variables of enclosing functions, or you pay to maintain the
> data-structures [static-chain,display] which make this access cheaper,
> or both.

Right.  But in most cases, you pay nothing, and in the cases where you
pay, you're getting something for it (like, not having to pass extra
parameters, which you would have to pay for instead).

> On some implementations (on RISC architectures) a register is reserved
> for the static-chain. This means one less register for *every* function
> (or maybe only for enclosed functions?) when used with a language that
> support this kind of nested functions.

Only for nested functions.  And when passing functions as parameters, if
the function *might* be nested (which, in Ada, the compiler knows).

> C++ probably left it out because of its C heritage,

Yes.

>... while Ada probably
> dropped it in because of its Pascal heritage.

Perhaps, but it's not just Pascal.  It's pretty much every language from
Algol and Lisp onward.  This feature is really extremely useful!

>... IMHO, its probably not
> worth the cost.

Well, my philosophy is: the (run-time) cost is irrelevant.  If you need
some feature, you need it, and if it's not in the language, you have to
implement it yourself, and that will cost at least as much.  What's
relevant is distributed overhead: if you pay the cost for a feature when
you *don't* use a feature, then that's a good reason to leave it out of
the language.  IMHO, to argue against nested procedures, you have to
either argue that they're not very useful, or you have to argue that
they cause distributed overhead (cost when you don't need them).  You
can't just argue that they're slow, because the alternatives
(implemented by hand) are just as slow.

- Bob



  parent reply	other threads:[~2005-03-14 22:41 UTC|newest]

Thread overview: 1036+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-03-05 13:42 Teaching new tricks to an old dog (C++ -->Ada) Turamnvia Suouriviaskimatta
2005-03-05 14:11 ` Ludovic Brenta
2005-03-05 14:17 ` EventHelix.com
2005-03-05 14:25   ` Ludovic Brenta
2005-03-05 15:02     ` [OT] " Peter Koch Larsen
2005-03-05 15:39       ` Ludovic Brenta
2005-03-05 16:30         ` Peter Koch Larsen
2005-03-05 17:52           ` Martin Dowie
2005-03-05 19:27             ` Dmitry A. Kazakov
2005-03-05 19:39               ` Martin Dowie
2005-03-05 19:46           ` Ludovic Brenta
2005-03-05 20:27             ` Ioannis Vranos
2005-03-05 21:15               ` Pascal Obry
2005-03-05 21:57                 ` Ioannis Vranos
2005-03-05 22:11                   ` Ioannis Vranos
2005-03-05 22:39                   ` Ioannis Vranos
2005-03-05 23:29                   ` Ludovic Brenta
2005-03-05 23:55                     ` Ioannis Vranos
2005-03-06  0:01                     ` Ioannis Vranos
2005-03-08  6:53                     ` Jerry Coffin
2005-03-08  9:20                       ` Ioannis Vranos
2005-03-08 15:29                         ` Jerry Coffin
2005-03-08 19:16                           ` Ludovic Brenta
2005-03-09 12:54                           ` Marin David Condic
2005-03-08 11:21                       ` [OT] Assembler vs. assembly Marius Amado Alves
2005-03-08 14:06                         ` Ed Falis
2005-03-08 19:18                         ` Ludovic Brenta
2005-03-08 21:16                           ` Marius Amado Alves
2005-03-08 11:47                       ` Teaching new tricks to an old dog (C++ -->Ada) Dr. Adrian Wrigley
2005-03-09  2:43                         ` Jerry Coffin
2005-03-09  9:44                           ` Peter Hermann
2005-03-09 14:32                             ` Jerry Coffin
2005-03-09 22:26                               ` Randy Brukardt
2005-03-09 22:29                           ` Ludovic Brenta
2005-03-09 22:53                             ` Jerry Coffin
2005-03-09 23:11                               ` Ludovic Brenta
2005-03-10  0:12                                 ` Jerry Coffin
2005-03-08 13:02                       ` Falk Tannhäuser
2005-03-08 14:37                         ` Jerry Coffin
2005-03-08 23:29                         ` Ioannis Vranos
2005-03-08 19:25                       ` Ludovic Brenta
2005-03-06  0:41                   ` [OT] " Jim Rogers
2005-03-06  1:23                     ` Ioannis Vranos
2005-03-06  1:35                       ` Ioannis Vranos
2005-03-06  3:11                       ` Jim Rogers
2005-03-06  4:09                         ` Ioannis Vranos
2005-03-06  6:12                           ` Jim Rogers
2005-03-06  1:41                     ` Ioannis Vranos
2005-03-06 20:52                   ` Wouter van Ooijen (www.voti.nl)
2005-03-08  5:12                     ` adaworks
2005-03-08  8:02                       ` Jerry Coffin
2005-03-08 19:52                         ` Martin Dowie
2005-03-09  1:48                           ` Jerry Coffin
2005-03-09  7:00                             ` Martin Dowie
2005-03-09 17:41                               ` Jerry Coffin
2005-03-09 17:53                                 ` Adrien Plisson
2005-03-09 23:12                                   ` Jerry Coffin
2005-03-09 23:36                                     ` Martin Dowie
2005-03-10  2:39                                       ` Jerry Coffin
2005-03-10  7:01                                         ` Martin Dowie
2005-03-10 15:08                                           ` Jerry Coffin
2005-03-10 17:38                                             ` Martin Dowie
2005-03-11  5:10                                               ` Jerry Coffin
2005-03-11 23:37                                                 ` Ludovic Brenta
2005-03-10  2:47                                       ` Ioannis Vranos
2005-03-10 11:29                                         ` Georg Bauhaus
2005-03-10 11:57                                           ` Falk Tannhäuser
2005-03-10 22:38                                     ` Randy Brukardt
2005-03-11  6:21                                       ` Jerry Coffin
2005-03-11  7:10                                         ` Pascal Obry
2005-03-11 15:52                                           ` Jerry Coffin
2005-03-12  0:25                                             ` Martin Dowie
2005-03-12  0:41                                               ` Martin Dowie
2005-03-14 20:41                                               ` kevin  cline
2005-03-12 10:43                                             ` Martin Krischik
2005-03-12 11:21                                               ` Peter Koch Larsen
2005-03-12 15:25                                                 ` Martin Krischik
2005-03-12 16:37                                                   ` Ioannis Vranos
2005-03-12 18:58                                                     ` C/C++ ISO releases and compliance Martin Krischik
2005-03-12 19:22                                                       ` Ioannis Vranos
2005-03-21 15:49                                                     ` Teaching new tricks to an old dog (C++ -->Ada) adaworks
2005-03-21 22:15                                                       ` Paul Dietz
2005-03-23  0:04                                                         ` Randy Brukardt
2005-03-12 20:59                                                   ` Robert A Duff
2005-03-13  9:50                                                     ` Martin Krischik
2005-03-14 20:14                                                   ` kevin  cline
2005-03-14 20:20                                                     ` Ioannis Vranos
2005-03-14 21:35                                                       ` Robert A Duff
2005-03-14 22:52                                                         ` Ioannis Vranos
2005-03-14 23:23                                                           ` Robert A Duff
2005-03-14 23:36                                                             ` Ioannis Vranos
2005-03-15  0:22                                                               ` Robert A Duff
2005-03-15  0:59                                                                 ` Ioannis Vranos
2005-03-15 16:00                                                     ` Martin Krischik
2005-03-15 17:18                                                       ` kevin  cline
2005-03-15 19:07                                                         ` Martin Dowie
2005-03-16  8:46                                                         ` Martin Krischik
2005-03-16 12:17                                                           ` Ioannis Vranos
2005-03-16 14:28                                                             ` Georg Bauhaus
2005-03-16 14:29                                                               ` Ioannis Vranos
2005-03-16 17:00                                                               ` Ioannis Vranos
2005-03-16 18:30                                                                 ` Georg Bauhaus
2005-03-16 18:38                                                                   ` Ioannis Vranos
2005-03-16 11:02                                                         ` Georg Bauhaus
2005-03-16 12:56                                                           ` Ioannis Vranos
2005-03-16 13:05                                                             ` Vinzent 'Gadget' Hoefler
2005-03-16 13:19                                                             ` Pascal Obry
2005-03-16 13:46                                                               ` Ioannis Vranos
2005-03-16 15:59                                                                 ` Pascal Obry
2005-03-16 16:03                                                                 ` Georg Bauhaus
2005-03-16 13:49                                                             ` Georg Bauhaus
2005-03-16 17:25                                                             ` Martin Krischik
2005-03-13 18:41                                               ` Jerry Coffin
2005-03-13 19:21                                                 ` Ioannis Vranos
2005-03-13 23:58                                                   ` dave
2005-03-14  2:17                                                     ` Jeff C
2005-03-14  9:02                                                       ` dave
2005-03-14  9:07                                                         ` dave
2005-03-14  9:14                                                       ` Ioannis Vranos
2005-03-13 19:52                                                 ` Ed Falis
2005-03-14  8:27                                                 ` Jean-Pierre Rosen
2005-03-14 22:55                                                 ` Randy Brukardt
2005-03-15  3:55                                                   ` Jerry Coffin
2005-03-15  6:33                                                     ` Randy Brukardt
2005-03-15 14:00                                                       ` Jerry Coffin
2005-03-15 21:36                                                         ` Randy Brukardt
2005-03-16 23:27                                                           ` Jerry Coffin
2005-03-17  3:48                                                             ` Randy Brukardt
2005-03-17 18:44                                                               ` Jerry Coffin
2005-03-17 20:48                                                                 ` Chad  R. Meiners
2005-03-18  1:43                                                                   ` Jerry Coffin
2005-03-17 23:15                                                                 ` Randy Brukardt
2005-03-17 20:53                                                             ` Chad  R. Meiners
2005-03-18  1:45                                                               ` Jerry Coffin
2005-03-18 15:00                                                                 ` Chad  R. Meiners
2005-03-11  9:04                                         ` Adrien Plisson
2005-03-11 16:58                                           ` Jerry Coffin
2005-03-12 22:13                                             ` Robert A Duff
2005-03-18  2:07                                               ` Jerry Coffin
2005-03-11 22:38                                         ` Wes Groleau
2005-03-21 15:37                                         ` adaworks
2005-03-22  5:00                                           ` Wes Groleau
2005-03-15  1:14                                       ` Larry Kilgallen
2005-03-16 14:12                                       ` Larry Kilgallen
2005-03-16 14:48                                         ` Vinzent 'Gadget' Hoefler
     [not found]                                       ` <1110522060.091940.178510@l41g2000cwc.googleFollowup-To: comp.lang.ada <dxZMIzEUCfAu@eisner.encompasserve.org>
2005-03-16 19:14                                         ` Robert A Duff
2005-03-09 18:04                                 ` Martin Dowie
2005-03-09 18:04                                 ` Martin Dowie
2005-03-09 18:41                                   ` Dmitry A. Kazakov
2005-03-09 18:52                                   ` xpyttl
2005-03-10  9:33                                     ` Martin Dowie
2005-03-10  1:03                                   ` Wes Groleau
     [not found]                               ` <1110390097.53213 <4587297.MlX1AOUbAb@linux1.krischik.com>
2005-03-13  3:17                                 ` C/C++ ISO releases and compliance Greg Comeau
     [not found]                               ` <1110390097.532139.43430@f14g2000cwb.googlegro <3254889.VeKxRnD1pd@linux1.krischik.com>
2005-03-13 14:32                                 ` Teaching new tricks to an old dog (C++ -->Ada) Greg Comeau
     [not found]                               ` <1110390097.532139.43430@f14g2000cwb.googlegrou <ath31d.1vm.ln@hunter.axlog.fr>
2005-03-14 20:46                                 ` Greg Comeau
2005-03-14 22:53                                   ` Martin Dowie
2005-03-14 23:00                                   ` Randy Brukardt
2005-03-15  9:18                                   ` Jean-Pierre Rosen
2005-03-22  8:08                               ` Larry Kilgallen
     [not found]                             ` <d0m <4952804.Myubg7stsI@linux1.krischik.com>
2005-03-13  1:55                               ` Greg Comeau
2005-03-13  2:12                               ` Greg Comeau
     [not found]                             ` <d0m <1462853.JgxLXPrZ7W@linux1.krischik.com>
2005-03-13  2:49                               ` Greg Comeau
2005-03-13  9:19                                 ` Martin Dowie
2005-03-13 14:26                                   ` Greg Comeau
2005-03-13 17:27                                     ` Martin Krischik
2005-03-13 18:17                                       ` Martin Dowie
2005-03-13 20:07                                       ` Greg Comeau
2005-03-14  0:31                                         ` Robert A Duff
2005-03-14  2:15                                           ` Ed Falis
2005-03-14 16:26                                             ` Larry Kilgallen
2005-03-14  8:53                                           ` Ioannis Vranos
2005-03-14  8:55                                             ` Ioannis Vranos
2005-03-14 20:27                                           ` Greg Comeau
2005-03-14 21:30                                             ` Robert A Duff
2005-03-14 21:53                                               ` Greg Comeau
2005-03-21 15:54                                               ` adaworks
2005-03-21 16:54                                                 ` Jerry Coffin
2005-03-21 17:10                                                   ` Yermat
2005-03-21 17:19                                                   ` Robert A Duff
2005-03-14 20:05                       ` kevin  cline
2005-03-23 23:51                         ` adaworks
2005-03-24  2:53                           ` Wes Groleau
2005-03-24 19:26                           ` kevin  cline
2005-03-08  4:59                   ` [OT] " adaworks
2005-03-08 15:02                   ` John Hudak
2005-03-08 19:13                     ` Ludovic Brenta
2005-03-08 23:40                     ` Ioannis Vranos
2005-03-05 22:44             ` Peter Koch Larsen
2005-03-05 22:59               ` Ludovic Brenta
2005-03-06  0:58                 ` Ed Falis
2005-03-06 13:11                   ` Ludovic Brenta
2005-03-06  7:54               ` Dmitry A. Kazakov
2005-03-06 11:21               ` Martin Krischik
2005-03-06 20:57               ` Wouter van Ooijen (www.voti.nl)
2005-03-06  1:03             ` Martin Dowie
2005-03-06  1:33               ` Pete Fenelon
2005-03-06  1:59               ` Larry Elmore
2005-03-06 15:22               ` xpyttl
2005-03-06 15:38                 ` Pete Fenelon
2005-03-07 11:03             ` Christoph Grein
2005-03-05 20:12           ` Larry Kilgallen
2005-03-06 20:49           ` Wouter van Ooijen (www.voti.nl)
2005-03-06 23:09             ` Peter Koch Larsen
2005-03-06 23:20               ` jimmaureenrogers
2005-03-06 23:42                 ` Paul E. Bennett
2005-03-07  2:01                   ` Larry Kilgallen
2005-03-07  2:04                   ` Jim Rogers
2005-03-07  4:10                   ` Ed Falis
2005-03-07  7:00                   ` Martin Dowie
2005-03-06 23:29               ` [OT] " Paul E. Bennett
2005-03-07  1:56                 ` Larry Kilgallen
2005-03-07  4:06                 ` Ed Falis
2005-03-07  7:06                 ` Wouter van Ooijen (www.voti.nl)
2005-03-07 20:10                 ` Simon Wright
2005-03-07 23:33                 ` Ludovic Brenta
2005-03-07  7:04               ` Wouter van Ooijen (www.voti.nl)
2005-03-08  4:50           ` adaworks
2005-03-08 14:51           ` John Hudak
2005-03-09  0:02             ` Ioannis Vranos
2005-03-09  6:53               ` Martin Dowie
2005-03-09  9:43                 ` Ioannis Vranos
2005-03-09 10:11                   ` Martin Dowie
2005-03-10 18:32           ` Preben Randhol
2005-03-11  3:00             ` Larry Kilgallen
2005-03-05 19:48         ` Ioannis Vranos
2005-03-05 20:12           ` Mark Lorenzen
2005-03-05 20:13           ` Ludovic Brenta
2005-03-05 20:44             ` Ioannis Vranos
2005-03-05 20:46               ` Ioannis Vranos
2005-03-06  0:55                 ` Martin Dowie
2005-03-05 21:11               ` Pascal Obry
2005-03-06  3:31                 ` Frank J. Lhota
2005-03-05 21:39               ` Adrien Plisson
2005-03-05 21:45                 ` Adrien Plisson
2005-03-06  3:30               ` Frank J. Lhota
2005-03-06 23:16                 ` Wes Groleau
2005-03-05 21:08             ` Adrien Plisson
2005-03-06 10:57               ` Martin Krischik
2005-03-06 23:26                 ` Wes Groleau
2005-03-07 10:06                   ` Martin Krischik
2005-03-06 21:01             ` Wouter van Ooijen (www.voti.nl)
2005-03-06 21:49               ` Martin Dowie
2005-03-07 14:30                 ` Christoph Grein
2005-03-07 19:03                   ` Martin Dowie
2005-03-05 21:23           ` Martin Krischik
2005-03-06  8:50             ` Ioannis Vranos
2005-03-06 10:43               ` Martin Krischik
2005-03-06 10:48               ` Leif Roar Moldskred
2005-03-06 12:45               ` Mark Lorenzen
2005-03-06 16:13               ` Jim Rogers
2005-03-10 22:36                 ` Robert A Duff
2005-03-05 22:01           ` Larry Kilgallen
2005-03-10  3:47             ` Song Yun Zhao
2005-03-10  4:53               ` Larry Kilgallen
2005-03-10 11:59             ` Alberto
2005-03-10 12:05               ` Adrien Plisson
2005-03-10 12:09               ` Adrien Plisson
2005-03-10 13:25                 ` Larry Kilgallen
2005-03-11 15:51                 ` T Beck
2005-03-22 12:04                   ` adaworks
2005-03-22 13:58                     ` Larry Kilgallen
2005-03-10 12:37               ` [OT] " Alex R. Mosteo
2005-03-10 17:55                 ` Pascal Obry
2005-03-10 21:26                   ` Lutz Donnerhacke
2005-03-11 15:52                     ` jayessay
2005-03-11  2:32                   ` Ioannis Vranos
2005-03-11  2:46                     ` Ioannis Vranos
2005-03-11 16:04                       ` jayessay
2005-03-10 22:15                 ` Robert A Duff
2005-03-11  7:52                   ` Hans Malherbe
2005-03-11 14:00                     ` Robert A Duff
2005-03-11 17:02                       ` Jerry Coffin
2005-03-11 20:48                         ` Robert A Duff
2005-03-12  6:19                           ` Jerry Coffin
2005-03-11  8:52                   ` [OT] " Alex R. Mosteo
2005-03-10 13:24               ` Larry Kilgallen
2005-03-11  7:50                 ` Alberto
2005-03-11 13:16                   ` Larry Kilgallen
2005-03-11 22:48                   ` Wes Groleau
2005-03-10 13:42               ` Dmitry A. Kazakov
2005-03-11  8:05                 ` Alberto
2005-03-11  9:30                   ` Dmitry A. Kazakov
2005-03-11  9:42                     ` Peter Koch Larsen
2005-03-11 10:14                       ` Dmitry A. Kazakov
2005-03-11 12:12                         ` Ioannis Vranos
2005-03-11 12:22                           ` Alex R. Mosteo
2005-03-11 13:29                             ` Peter Koch Larsen
2005-03-11 13:48                               ` Alex R. Mosteo
2005-03-11 12:24                           ` Ioannis Vranos
2005-03-11 13:34                           ` Dmitry A. Kazakov
2005-03-11 14:39                             ` Ioannis Vranos
2005-03-11 13:28                         ` Peter Koch Larsen
2005-03-11 15:29                           ` Dmitry A. Kazakov
2005-03-11 18:07                             ` Peter Koch Larsen
2005-03-11 22:55                     ` Wes Groleau
2005-03-21 21:00                   ` Robert A Duff
2005-03-28  6:33                     ` Dave Thompson
2005-03-28 15:12                       ` Ioannis Vranos
2005-03-28 15:44                         ` REH
2005-03-28 16:12                           ` Ioannis Vranos
2005-03-28 16:43                             ` REH
2005-03-28 18:29                               ` Ioannis Vranos
2005-03-28 18:51                                 ` REH
2005-03-28 19:59                                   ` Ioannis Vranos
2005-03-28 20:42                                     ` REH
2005-03-28 21:24                                       ` Ioannis Vranos
2005-03-28 21:52                                         ` REH
2005-03-29  3:10                                           ` Ioannis Vranos
2005-03-30 12:38                                             ` Ioannis Vranos
2005-03-28 15:44                         ` Ioannis Vranos
2005-03-28 17:03                         ` REH
2005-03-28 18:47                           ` Ioannis Vranos
2005-03-28 19:01                             ` REH
2005-03-28 20:13                               ` Ioannis Vranos
2005-03-28 20:33                                 ` Ioannis Vranos
2005-03-28 17:41                     ` Larry Kilgallen
2005-03-10 16:40               ` red floyd
2005-03-11  4:07                 ` Jim Rogers
2005-03-11  5:05                   ` red floyd
2005-03-10 17:54               ` Pascal Obry
2005-03-11  9:09                 ` Peter Hermann
2005-03-11  2:32               ` fmdf
2005-03-11  2:46                 ` fmdf
2005-03-11  4:06                 ` Ioannis Vranos
2005-03-11  4:53                   ` fabio de francesco
2005-03-11  7:07                     ` Ioannis Vranos
2005-03-11 10:47                     ` Marius Amado Alves
2005-03-12 22:33                     ` Robert A Duff
2005-03-11  5:16                   ` fabio de francesco
2005-03-11  7:25                     ` Ioannis Vranos
2005-03-06  1:01           ` [OT] " Martin Dowie
2005-03-06  1:30             ` Ioannis Vranos
2005-03-06  3:20               ` Jim Rogers
2005-03-06  3:53                 ` Ioannis Vranos
2005-03-06 10:28               ` Martin Krischik
2005-03-06 22:24                 ` Pascal Obry
2005-03-06  4:50             ` Larry Kilgallen
2005-03-08 12:14             ` Hans Malherbe
2005-03-08 12:59               ` Dr. Adrian Wrigley
2005-03-08 13:27                 ` Ioannis Vranos
2005-03-08 18:06                   ` Dr. Adrian Wrigley
2005-03-09  0:05                     ` Ioannis Vranos
2005-03-22  1:15                       ` adaworks
2005-03-22 20:22                         ` Frank J. Lhota
2005-03-22 20:27                           ` Robert A Duff
2005-03-22 21:06                             ` red floyd
2005-03-23 14:08                             ` bjarne
2005-03-23 14:45                               ` Robert A Duff
2005-03-23 15:46                               ` Frank J. Lhota
2005-03-24  7:20                         ` Martin Krischik
2005-03-24 18:57                         ` Jerry Coffin
2005-03-08 15:31               ` Peter Amey
2005-03-08 18:16                 ` Pascal Obry
2005-03-09  0:44                   ` Ioannis Vranos
2005-03-09  8:52                     ` Pascal Obry
2005-03-09  9:49                       ` Ioannis Vranos
2005-03-09 10:07                         ` Pascal Obry
2005-03-09 11:32                           ` Ioannis Vranos
2005-03-09 13:34                             ` Peter Amey
2005-03-09 11:17                         ` Georg Bauhaus
2005-03-09 14:24                           ` Falk Tannhäuser
2005-03-09 14:56                             ` Georg Bauhaus
2005-03-10 10:45                               ` Falk Tannhäuser
2005-03-10 14:25                                 ` Georg Bauhaus
2005-03-10 14:31                                   ` Georg Bauhaus
2005-03-10  4:31                             ` Ioannis Vranos
2005-03-10  4:42                               ` Ioannis Vranos
2005-03-22  1:43                             ` adaworks
2005-03-22  4:02                               ` Ioannis Vranos
2005-03-22  9:49                                 ` Georg Bauhaus
2005-03-22 20:03                                   ` Ioannis Vranos
2005-03-22 22:00                                     ` Georg Bauhaus
2005-03-23  9:00                                       ` Ioannis Vranos
2005-03-23  9:11                                         ` Pascal Obry
2005-03-23 10:09                                           ` Ioannis Vranos
2005-03-23 10:16                                             ` Pascal Obry
2005-03-23 10:36                                               ` Ioannis Vranos
2005-03-23 10:47                                                 ` Pascal Obry
2005-03-23 11:00                                                   ` Ioannis Vranos
2005-03-23 12:02                                                     ` Pascal Obry
2005-03-23 19:57                                                       ` Ioannis Vranos
2005-03-23 20:22                                                         ` Matthew Heaney
2005-03-24  2:06                                                         ` Jim Rogers
2005-03-24  2:36                                                           ` Matthew Heaney
2005-03-23 11:15                                                 ` Georg Bauhaus
2005-03-23 11:20                                                   ` Ioannis Vranos
2005-03-23 11:24                                                     ` Ioannis Vranos
2005-03-23 13:58                                                       ` fabio de francesco
2005-03-23 20:14                                                         ` Ioannis Vranos
2005-03-24  2:17                                                           ` Jim Rogers
2005-03-24  2:38                                                             ` Ioannis Vranos
2005-03-24  2:50                                                               ` Jim Rogers
2005-03-24  3:23                                                                 ` Ioannis Vranos
2005-03-24  3:28                                                                   ` Ioannis Vranos
2005-03-24  4:26                                                                     ` Georg Bauhaus
2005-03-24  4:43                                                                   ` Georg Bauhaus
2005-03-24 11:33                                                                   ` Martin Krischik
2005-03-25  1:14                                                                     ` Ioannis Vranos
2005-03-25  9:56                                                                       ` Martin Krischik
2005-03-24 18:17                                                                   ` adaworks
2005-03-24 18:37                                                             ` Pascal Obry
2005-03-24 19:41                                                               ` jimmaureenrogers
2005-03-24 14:55                                                           ` fabio de francesco
2005-03-25  1:34                                                             ` Ioannis Vranos
2005-03-25  2:01                                                               ` Dr. Adrian Wrigley
2005-03-24  2:07                                                       ` Matthew Heaney
2005-03-23 11:25                                                 ` Dmitry A. Kazakov
2005-03-23 20:19                                                   ` Ioannis Vranos
2005-03-24  1:58                                                 ` Matthew Heaney
2005-03-25  0:47                                                 ` Chad  R. Meiners
2005-03-25  1:54                                                   ` Ioannis Vranos
2005-03-29  9:26                                               ` Alex R. Mosteo
2005-03-23 18:24                                             ` adaworks
2005-03-23 12:52                                         ` Georg Bauhaus
2005-03-23 20:53                                           ` Ioannis Vranos
2005-03-23 23:01                                             ` Georg Bauhaus
2005-03-24  1:22                                               ` Ioannis Vranos
2005-03-24  2:19                                                 ` Georg Bauhaus
2005-03-24  2:47                                                   ` Ioannis Vranos
2005-03-24 21:10                                                     ` T Beck
2005-03-25  1:02                                                       ` Georg Bauhaus
2005-03-25  2:19                                                         ` Ioannis Vranos
2005-03-25 19:37                                                           ` Georg Bauhaus
2005-03-25 21:01                                                             ` Dr. Adrian Wrigley
2005-03-25 21:16                                                               ` Hyman Rosen
2005-03-26  2:22                                                               ` adaworks
2005-03-26  6:09                                                             ` Ioannis Vranos
2005-03-26  6:13                                                               ` Ioannis Vranos
2005-03-26  9:31                                                             ` Martin Krischik
2005-03-28  2:50                                                               ` Hyman Rosen
2005-03-29  8:54                                                                 ` C++ language support Martin Krischik
2005-03-29  9:11                                                                   ` Alf P. Steinbach
2005-03-29 15:13                                                                     ` Martin Krischik
2005-03-23 13:43                                         ` Teaching new tricks to an old dog (C++ -->Ada) Vinzent 'Gadget' Hoefler
2005-03-24 11:24                                         ` Peter Amey
2005-03-24 11:55                                           ` Ioannis Vranos
2005-03-24 12:50                                             ` Vinzent 'Gadget' Hoefler
2005-03-22 20:50                                   ` Ioannis Vranos
2005-03-22 21:55                                     ` Georg Bauhaus
2005-03-23  9:02                                       ` Ioannis Vranos
2005-03-23 10:28                                         ` Vinzent 'Gadget' Hoefler
2005-03-23 10:53                                           ` Ioannis Vranos
2005-03-23 13:00                                             ` Vinzent 'Gadget' Hoefler
2005-03-23 11:06                                         ` Georg Bauhaus
2005-03-23 11:18                                           ` Ioannis Vranos
2005-03-23 13:22                                             ` Georg Bauhaus
2005-03-23 21:24                                               ` Ioannis Vranos
2005-03-23 21:50                                                 ` Georg Bauhaus
2005-03-24  0:49                                                   ` Ioannis Vranos
2005-03-24  2:46                                             ` Matthew Heaney
2005-03-22 16:19                                 ` fabio de francesco
2005-03-22 20:17                                   ` Ioannis Vranos
2005-03-23 18:35                                     ` adaworks
2005-03-23 18:45                                       ` Martin Dowie
2005-03-23 20:59                                         ` Ioannis Vranos
2005-03-23 21:39                                       ` Robert A Duff
2005-03-24  2:42                                       ` Wes Groleau
2005-03-24  2:54                                         ` Ioannis Vranos
2005-03-24  3:15                                           ` Wes Groleau
2005-03-24  3:30                                             ` Ioannis Vranos
2005-03-24  6:01                                               ` Jerry Coffin
2005-03-24  4:46                                             ` Jerry Coffin
2005-03-25  4:44                                               ` Wes Groleau
2005-03-24  3:21                                         ` Ed Falis
2005-03-24  7:24                                         ` Dmitry A. Kazakov
2005-03-24 10:47                                       ` Martin Krischik
2005-03-24 11:56                                         ` Dmitry A. Kazakov
2005-03-24 13:38                                           ` Martin Krischik
2005-03-24 15:03                                             ` Dmitry A. Kazakov
2005-03-25  9:50                                               ` Martin Krischik
2005-03-25 11:01                                                 ` Dmitry A. Kazakov
2005-03-25 13:55                                                   ` Martin Krischik
2005-03-25  2:35                                             ` Ioannis Vranos
2005-03-25  3:16                                             ` Ioannis Vranos
2005-03-24 11:59                                         ` Ioannis Vranos
2005-03-24 12:54                                           ` Vinzent 'Gadget' Hoefler
2005-03-25  2:38                                             ` Ioannis Vranos
2005-03-24 13:36                                           ` Martin Krischik
2005-03-24 15:43                                             ` Julián Albo
2005-03-25  9:39                                               ` Martin Krischik
2005-03-25  9:25                                         ` Martin Krischik
2005-03-23 18:12                                 ` adaworks
2005-03-23 21:02                                   ` Ioannis Vranos
2005-03-24  0:01                                     ` adaworks
2005-03-24  1:03                                       ` Ioannis Vranos
2005-03-26 22:56                                       ` Owen Jacobson
2005-03-10 13:16                         ` Larry Kilgallen
2005-03-25  4:07                         ` Larry Kilgallen
2005-03-11  3:00                       ` fmdf
2005-03-11 22:20                         ` Wes Groleau
2005-03-08 18:33                 ` CTips
2005-03-08 18:46                   ` Pascal Obry
2005-03-08 20:10                     ` CTips
2005-03-08 20:44                       ` Pascal Obry
2005-03-08 21:21                       ` Georg Bauhaus
2005-03-08 21:48                       ` Georg Bauhaus
2005-03-08 19:24                   ` Larry Kilgallen
2005-03-08 19:31                   ` Dmitry A. Kazakov
2005-03-08 20:13                     ` CTips
2005-03-08 20:38                       ` Martin Dowie
2005-03-09  2:43                         ` CTips
2005-03-09  4:34                           ` Jim Rogers
2005-03-09  5:46                             ` CTips
2005-03-09  6:48                               ` Martin Dowie
2005-03-09  9:24                                 ` Martin Dowie
2005-03-09 15:39                                 ` CTips
2005-03-09 16:37                                   ` Pascal Obry
2005-03-09 17:01                                 ` Gautier
2005-03-09  9:08                               ` Pascal Obry
2005-03-09 16:09                                 ` CTips
2005-03-09 16:33                                   ` Pascal Obry
2005-03-09 22:34                                     ` Ludovic Brenta
2005-03-10  7:19                                       ` Pascal Obry
2005-03-10  0:57                                     ` Wes Groleau
2005-03-10  7:24                                       ` Pascal Obry
2005-03-10 22:22                                         ` Wes Groleau
2005-03-11  7:05                                           ` Pascal Obry
2005-03-10 22:28                                         ` Wes Groleau
2005-03-11 22:06                                           ` Robert A Duff
2005-03-11 22:44                                             ` Wes Groleau
2005-03-11  4:00                                     ` fabio de francesco
2005-03-11  4:20                                       ` fabio de francesco
2005-03-11  7:26                                       ` Pascal Obry
2005-03-09 16:48                                 ` Adrien Plisson
2005-03-09 11:42                               ` Georg Bauhaus
2005-03-09 12:06                                 ` Pascal Obry
2005-03-10  1:47                                 ` CTips
2005-03-10 16:39                                   ` Georg Bauhaus
2005-03-11  6:20                                     ` CTips
2005-03-12  7:27                                       ` Georg Bauhaus
2005-03-12 13:56                                         ` CTips
2005-03-13  2:33                                           ` Georg Bauhaus
2005-03-14 15:38                                           ` Dr. Adrian Wrigley
2005-03-10 23:07                                   ` Randy Brukardt
2005-03-09 14:47                               ` Ed Falis
2005-03-09 19:27                               ` jimmaureenrogers
2005-03-10  2:09                                 ` CTips
2005-03-10  2:35                                   ` jimmaureenrogers
2005-03-11  4:58                                     ` 10 rules for benchmarking (was Re: Teaching new tricks to an old dog (C++ -->Ada)) CTips
2005-03-11 12:18                                       ` Jean-Pierre Rosen
2005-03-11 14:00                                         ` CTips
2005-03-11 18:53                                           ` Pascal Obry
2005-03-11 19:24                                             ` CTips
2005-03-11 19:38                                               ` Willem
2005-03-12  8:37                                               ` Georg Bauhaus
2005-03-12 17:29                                                 ` CTips
2005-03-12 18:38                                                   ` Martin Dowie
2005-03-12 19:36                                                     ` CTips
2005-03-14 10:38                                                       ` Martin Dowie
2005-03-14 22:15                                                       ` Randy Brukardt
2005-03-15  1:50                                                         ` CTips
2005-03-15  6:54                                                           ` Randy Brukardt
2005-03-13  3:17                                                   ` Jim Rogers
2005-03-13  3:42                                                     ` Arthur J. O'Dwyer
2005-03-13  6:59                                                       ` jimmaureenrogers
2005-03-14  0:48                                                         ` Arthur J. O'Dwyer
2005-03-21  5:59                                                           ` Dave Thompson
2005-03-15 18:37                                                       ` C: [] vs * (was: 10 rules for benchmarking (was Re: Teaching new tricks to an old dog (C++ -->Ada))) Programmer Dude
2005-03-15 21:29                                                         ` Arthur J. O'Dwyer
2005-03-16  0:08                                                           ` Programmer Dude
2005-03-13  4:10                                                     ` 10 rules for benchmarking (was Re: Teaching new tricks to an old dog (C++ -->Ada)) CTips
2005-03-13  7:06                                                       ` jimmaureenrogers
2005-03-13  9:01                                                       ` fabio de francesco
2005-03-13 10:31                                                       ` Georg Bauhaus
2005-03-13 11:04                                                         ` Georg Bauhaus
2005-03-13 13:47                                                         ` Marin David Condic
2005-03-13 19:22                                                           ` Georg Bauhaus
2005-03-13 10:37                                                       ` Georg Bauhaus
2005-03-13 14:54                                                       ` Jim Rogers
2005-03-15  8:56                                                   ` 10 rules for benchmarking Vinzent 'Gadget' Hoefler
2005-03-14 15:35                                               ` 10 rules for benchmarking (was Re: Teaching new tricks to an old dog (C++ -->Ada)) Gautier
2005-03-14 16:19                                                 ` CTips
2005-03-14 17:40                                                   ` Pascal Obry
2005-03-14 20:41                                                   ` Robert A Duff
2005-03-15  1:45                                                     ` CTips
2005-03-12  7:16                                           ` Georg Bauhaus
2005-03-12 11:55                                             ` Willem
2005-03-13  1:18                                               ` Georg Bauhaus
2005-03-12 13:39                                             ` CTips
2005-03-13  4:37                                               ` Georg Bauhaus
2005-03-11 14:34                                         ` Willem
2005-03-11 16:28                                           ` Jean-Pierre Rosen
2005-03-11 18:33                                             ` Willem
2005-03-11 23:04                                         ` 10 rules for benchmarking (was Re: Teaching new tricks to anold " infobahn
2005-03-11 18:50                                       ` 10 rules for benchmarking (was Re: Teaching new tricks to an old " Pascal Obry
2005-03-11 19:14                                         ` CTips
2005-03-11 19:42                                           ` REH
2005-03-11 20:36                                             ` CTips
2005-03-11 20:48                                               ` REH
2005-03-11 21:03                                                 ` Willem
2005-03-11 21:17                                                 ` REH
2005-03-11 23:11                                                 ` CTips
2005-03-12  1:14                                       ` Jim Rogers
2005-03-12  2:32                                         ` CTips
2005-03-12  4:05                                           ` Jim Rogers
2005-03-12 11:00                                             ` CTips
2005-03-12 12:54                                               ` jimmaureenrogers
2005-03-12  2:33                                         ` CTips
2005-03-12  9:30                                           ` Aslan Kral
2005-03-12 12:47                                             ` Aslan Kral
2005-03-12 13:16                                               ` Jim Rogers
2005-03-12 13:29                                                 ` Aslan Kral
2005-03-12 14:37                                                   ` Jim Rogers
2005-03-12 14:45                                       ` 10 rules for benchmarking Martin Eisenberg
2005-03-12 12:52                                     ` Teaching new tricks to an old dog (C++ -->Ada) Willem
2005-03-10  3:59                                   ` Wes Groleau
2005-03-10 14:34                                   ` Arnold
2005-03-13 16:35                               ` 10 rules for benchmarking (was Re: Teaching new tricks to an Larry Kilgallen
2005-03-09 22:30                           ` Teaching new tricks to an old dog (C++ -->Ada) Randy Brukardt
2005-03-08 20:54                       ` Georg Bauhaus
2005-03-08 20:59                       ` Dmitry A. Kazakov
2005-03-09  2:51                         ` CTips
2005-03-09  9:00                           ` Dmitry A. Kazakov
2005-03-08 21:07                       ` Pascal Obry
2005-03-12 10:43                         ` Simon Wright
2005-03-12 11:11                           ` Simon Wright
2005-03-12 17:36                           ` CTips
2005-03-12 23:06                             ` Robert A Duff
2005-03-09  9:12                       ` Pascal Obry
2005-03-11 21:37                       ` Robert A Duff
2005-03-08 20:23                     ` Larry Kilgallen
2005-03-09  1:18                   ` Jim Rogers
2005-03-09  9:14                     ` Dmitry A. Kazakov
2005-03-10 23:04                   ` Robert A Duff
2005-03-09 14:07                 ` Hans Malherbe
2005-03-09 14:52                   ` Martin Dowie
2005-03-09 15:20                     ` Alex R. Mosteo
2005-03-09 15:20                       ` Lutz Donnerhacke
2005-03-09 19:51                       ` Mark Lorenzen
2005-03-10 10:11                         ` Alex R. Mosteo
2005-03-10 21:22                           ` Mark Lorenzen
2005-03-09 22:43                       ` Randy Brukardt
2005-03-10 10:13                         ` Alex R. Mosteo
2005-03-10  2:30                     ` Ioannis Vranos
2005-03-10  4:25                       ` Jim Rogers
2005-03-10  4:41                         ` Ioannis Vranos
2005-03-10  8:05                           ` Jim Rogers
2005-03-10  9:40                             ` Ioannis Vranos
2005-03-10 10:28                               ` Georg Bauhaus
2005-03-10 10:51                                 ` Ioannis Vranos
2005-03-10 12:04                                   ` Georg Bauhaus
2005-03-10 12:18                                     ` Ioannis Vranos
2005-03-10 13:13                                       ` Georg Bauhaus
2005-03-10 13:44                                         ` Ioannis Vranos
2005-03-10 13:32                                       ` Marius Amado Alves
2005-03-12 20:30                                         ` Robert A Duff
2005-03-12 20:39                                           ` Ed Falis
2005-03-13  3:20                                           ` Larry Elmore
2005-03-13  4:41                                           ` Marius Amado Alves
2005-03-13 23:53                                             ` Robert A Duff
2005-03-10 17:35                               ` Pascal Obry
2005-03-11  4:23                                 ` Ioannis Vranos
2005-03-11  7:28                                   ` Pascal Obry
2005-03-11 12:00                                   ` Georg Bauhaus
2005-03-10 23:25                         ` Randy Brukardt
2005-03-09 14:55                   ` Pascal Obry
2005-03-09 15:23                     ` Ed Falis
2005-03-09 15:55                       ` Georg Bauhaus
2005-03-09 16:59                         ` Ed Falis
2005-03-12 14:16                     ` Robert A Duff
2005-03-09 15:23                   ` Adrien Plisson
2005-03-09 15:33                   ` Georg Bauhaus
2005-03-09 15:39                     ` Pascal Obry
2005-03-09 16:43                       ` Marius Amado Alves
     [not found]                         ` <422f2de1$0$181$afc38c87@>
2005-03-09 17:40                           ` Pascal Obry
2005-03-09 17:00                       ` Georg Bauhaus
2005-03-09 17:31                       ` Falk Tannhäuser
2005-03-09 17:43                         ` Pascal Obry
2005-03-10  4:12                           ` Ioannis Vranos
2005-03-10  8:23                     ` Hans Malherbe
2005-03-09 15:56                   ` jimmaureenrogers
2005-03-09 22:52                     ` Randy Brukardt
2005-03-10  3:36                     ` Wes Groleau
2005-03-10  4:00                       ` Jerry Coffin
2005-03-10  4:08                         ` Wes Groleau
2005-03-18  8:22                           ` Jerry Coffin
2005-03-18 12:39                             ` Ioannis Vranos
2005-03-10  4:16                       ` Ioannis Vranos
2005-03-10 10:11                       ` Falk Tannhäuser
2005-03-12 14:52                         ` Robert A Duff
2005-03-09 17:03                   ` Larry Kilgallen
2005-03-12 14:55                     ` Robert A Duff
2005-03-12 17:59                       ` CTips
2005-03-14 14:48                         ` Dr. Adrian Wrigley
2005-03-14 16:30                           ` Larry Kilgallen
2005-03-14 21:13                           ` CTips
2005-03-15  1:04                             ` Larry Kilgallen
2005-03-14 20:22                         ` Robert A Duff
2005-03-14 22:41                         ` Robert A Duff [this message]
2005-03-12 22:31                       ` Larry Kilgallen
2005-03-13 23:38                         ` Robert A Duff
2005-03-14 16:23                           ` Larry Kilgallen
2005-03-14 20:30                             ` Robert A Duff
2005-03-10  3:26                   ` Wes Groleau
2005-03-23 19:53                 ` Jerry Coffin
2005-03-23 20:17                   ` Matthew Heaney
2005-03-23 20:28                     ` Jerry Coffin
2005-03-23 21:41                       ` Matthew Heaney
2005-03-23 21:52                       ` Robert A Duff
2005-03-24  1:50                         ` Jerry Coffin
2005-03-23 20:34                   ` Martin Dowie
2005-03-23 21:13                     ` Ioannis Vranos
2005-03-23 22:01                     ` Robert A Duff
2005-03-24  7:48                       ` Dmitry A. Kazakov
2005-03-26 10:19                       ` Class hierarchy of exceptions (Ada, C++) Ludovic Brenta
2005-03-26 12:36                         ` Dmitry A. Kazakov
2005-03-26 13:55                           ` Georg Bauhaus
2005-03-28 10:32                             ` Ludovic Brenta
2005-03-28 10:24                           ` Ludovic Brenta
2005-03-28 12:29                             ` Dmitry A. Kazakov
2005-03-26 22:33                         ` Ioannis Vranos
2005-03-28 10:49                           ` Ludovic Brenta
2005-03-28 12:08                             ` Ioannis Vranos
2005-03-28 12:21                               ` Ludovic Brenta
2005-03-28 12:29                                 ` Ioannis Vranos
2005-03-29 11:42                                 ` Florian Weimer
2005-03-28 16:02                               ` Pascal Obry
2005-03-28 16:22                                 ` Ioannis Vranos
2005-03-28 16:37                                   ` Ioannis Vranos
2005-03-28 18:15                                     ` Tapio Kelloniemi
2005-03-28 22:02                                       ` Ludovic Brenta
2005-03-30 10:03                                       ` Peter Koch Larsen
2005-03-30 11:35                                         ` Tapio Kelloniemi
2005-03-30 12:01                                           ` Pascal Obry
2005-03-30 12:22                                           ` Ioannis Vranos
2005-03-29  8:43                             ` Jean-Pierre Rosen
2005-03-29 16:57                               ` Pascal Obry
2005-03-30  9:02                                 ` Jean-Pierre Rosen
2005-03-28 22:56                         ` Randy Brukardt
2005-03-24  1:33                     ` Teaching new tricks to an old dog (C++ -->Ada) Jerry Coffin
2005-03-24 18:31                       ` adaworks
2005-03-24 22:59                       ` jayessay
2005-03-25  1:32                         ` Dr. Adrian Wrigley
2005-03-25  6:28                           ` Jerry Coffin
2005-03-25 14:20                             ` Dr. Adrian Wrigley
2005-03-25 21:14                               ` Jerry Coffin
2005-03-26  8:49                                 ` Martin Krischik
2005-03-26 20:29                                   ` Jerry Coffin
2005-03-27  8:18                                     ` Martin Krischik
2005-03-27 10:28                                       ` Ioannis Vranos
2005-03-27 17:53                                         ` adaworks
2005-03-27 14:38                                       ` Jerry Coffin
2005-03-27 15:46                                         ` Dmitry A. Kazakov
2005-03-27 17:50                                         ` Martin Krischik
2005-03-28  5:34                                           ` Jerry Coffin
2005-03-27 19:21                                     ` Chad  R. Meiners
2005-03-28  9:09                                       ` Jerry Coffin
2005-03-29 21:35                                         ` Chad  R. Meiners
2005-03-27 19:41                                     ` Chad  R. Meiners
2005-03-28  6:02                                       ` Jerry Coffin
2005-03-28 23:37                                         ` Chad  R. Meiners
2005-03-29 21:00                                         ` Chad  R. Meiners
2005-03-25 21:33                               ` Hyman Rosen
2005-03-26  7:43                                 ` Dmitry A. Kazakov
2005-03-26  0:58                             ` Wes Groleau
2005-03-26  3:02                           ` jayessay
2005-03-25  3:31                         ` Jeremy J
2005-03-25  4:40                         ` Jared
2005-03-26  3:28                           ` jayessay
2005-03-25 23:45                         ` Jerry Coffin
2005-03-26  3:42                           ` jayessay
2005-03-26  9:02                             ` Jerry Coffin
2005-03-26 21:43                               ` jayessay
2005-03-27  1:26                                 ` Jerry Coffin
2005-03-27  2:24                                   ` jayessay
2005-03-27 19:51                                   ` Chad  R. Meiners
2005-03-28  9:23                                     ` Jerry Coffin
2005-03-29  1:09                                       ` Chad  R. Meiners
2005-03-28  3:02                               ` Hyman Rosen
2005-03-28  6:48                                 ` Paul Mensonides
2005-03-28 21:32                                   ` jayessay
2005-03-29 10:22                                     ` Paul Mensonides
2005-03-29 16:44                                       ` jayessay
2005-03-28 21:24                                 ` jayessay
2005-03-29 10:17                                   ` Paul Mensonides
2005-03-29 16:37                                     ` jayessay
     [not found]                     ` <4241d7a2$0$7285$afc38c87@>
2005-03-24 11:43                       ` Martin Dowie
2005-03-23 21:35                   ` Georg Bauhaus
2005-03-23 21:50                     ` Ioannis Vranos
2005-03-24 13:30                       ` Martin Krischik
2005-03-25  2:48                         ` Ioannis Vranos
2005-03-25  3:27                         ` Ioannis Vranos
2005-03-25  3:27                         ` Ioannis Vranos
2005-03-25 12:42                           ` Rendezvous based mutithreading Martin Krischik
2005-03-25 16:41                             ` Dmitry A. Kazakov
2005-03-25 18:21                               ` Martin Krischik
2005-03-26  7:14                                 ` Dmitry A. Kazakov
2005-03-23 21:37                   ` Teaching new tricks to an old dog (C++ -->Ada) Larry Kilgallen
2005-03-23 23:12                     ` Jerry Coffin
2005-03-24  2:42                       ` Jim Rogers
2005-03-24  3:33                         ` Jerry Coffin
2005-03-24  4:50                       ` Larry Kilgallen
2005-03-24  2:49                     ` Wes Groleau
2005-03-23 22:17                   ` Robert A Duff
2005-03-24  2:16                     ` Jerry Coffin
2005-03-24  3:13                       ` Ed Falis
2005-03-25  1:10                         ` Robert A Duff
2005-03-25  2:33                           ` Jerry Coffin
2005-03-24 13:22                       ` Martin Krischik
2005-03-24 13:16                   ` Martin Krischik
2005-03-24 15:34                     ` Dmitry A. Kazakov
2005-03-24 16:35                     ` Jerry Coffin
2005-03-24 18:34                       ` Pascal Obry
2005-03-24 18:41                       ` adaworks
2005-03-25  1:23                       ` Robert A Duff
2005-03-25  4:58                       ` Wes Groleau
2005-03-25  5:01                       ` Wes Groleau
2005-03-25 21:40                         ` Hyman Rosen
2005-03-26  0:52                           ` Wes Groleau
2005-03-28  3:10                             ` Hyman Rosen
2005-03-25  1:20                     ` Robert A Duff
2005-03-25  2:52                     ` Ioannis Vranos
2005-03-25 18:06                       ` adaworks
2005-03-25 19:12                         ` Ed Falis
2005-03-25  3:14                     ` Ioannis Vranos
2005-03-25  5:04                       ` Wes Groleau
2005-03-25  6:12                         ` Ioannis Vranos
2005-03-08 15:53               ` Larry Kilgallen
2005-03-09  0:57                 ` Ioannis Vranos
2005-03-11  9:28                 ` Peter Koch Larsen
2005-03-10 18:39           ` [OT] " Preben Randhol
2005-03-10 20:55             ` xpyttl
2005-03-10 21:15               ` Ed Falis
2005-03-10 22:39                 ` REH
2005-03-10 23:59                   ` Georg Bauhaus
2005-03-11  8:48                   ` Hans Malherbe
2005-03-11  9:46                   ` [OT] " Dmitry A. Kazakov
2005-03-11 18:01                   ` Dr. Adrian Wrigley
2005-03-11 18:32                     ` Peter Koch Larsen
2005-03-11 19:06                       ` REH
2005-03-11 20:05                       ` Dr. Adrian Wrigley
2005-03-11 20:21                         ` REH
2005-03-11 18:34                     ` Falk Tannhäuser
2005-03-12  8:42                       ` Georg Bauhaus
2005-03-14 14:40                         ` Dr. Adrian Wrigley
2005-03-14 15:05                           ` Ioannis Vranos
2005-03-14 15:42                           ` Peter Koch Larsen
2005-03-14 16:06                           ` Falk Tannhäuser
2005-03-14 17:16                             ` Dr. Adrian Wrigley
2005-03-14 18:43                               ` Ioannis Vranos
2005-03-14 19:29                                 ` Dr. Adrian Wrigley
2005-03-14 20:14                                   ` Dmitry A. Kazakov
2005-03-14 20:27                                     ` Georg Bauhaus
2005-03-14 21:02                                     ` Robert A Duff
2005-03-14 21:46                                       ` Dr. Adrian Wrigley
2005-03-14 23:39                                       ` Hyman Rosen
2005-03-15  0:00                                         ` Robert A Duff
2005-03-15  3:18                                           ` Ed Falis
2005-03-15  9:12                                       ` Dmitry A. Kazakov
2005-03-15 10:51                                         ` Georg Bauhaus
2005-03-15 12:56                                           ` Dmitry A. Kazakov
2005-03-16 11:46                                             ` Georg Bauhaus
2005-03-16 13:31                                               ` Dmitry A. Kazakov
2005-03-16 14:11                                                 ` Georg Bauhaus
2005-03-16 15:16                                                   ` Dmitry A. Kazakov
2005-03-15 13:09                                           ` Dr. Adrian Wrigley
2005-03-14 20:17                                   ` Ioannis Vranos
2005-03-14 20:17                                   ` Georg Bauhaus
2005-03-14 20:33                                   ` Dr. Adrian Wrigley
2005-03-14 22:47                                     ` Ioannis Vranos
2005-03-15  0:02                                       ` Dr. Adrian Wrigley
2005-03-14 21:02                                   ` kevin  cline
2005-03-14 21:25                                     ` Dr. Adrian Wrigley
2005-03-14 23:30                                       ` Hyman Rosen
2005-03-14 23:46                               ` [OT] " Hyman Rosen
2005-03-15  0:10                                 ` Dr. Adrian Wrigley
2005-03-15  8:59                                   ` Dmitry A. Kazakov
2005-03-15 12:01                                   ` Hans Malherbe
2005-03-15 12:54                                     ` Magic ordering Marius Amado Alves
2005-03-15 13:16                                       ` Dmitry A. Kazakov
2005-03-15 13:53                                         ` Marius Amado Alves
2005-03-15 15:08                                           ` Dmitry A. Kazakov
2005-03-15 16:21                                             ` Marius Amado Alves
2005-03-15 17:52                                               ` Dmitry A. Kazakov
2005-03-16 20:03                                         ` Robert A Duff
2005-03-16 20:54                                           ` Dmitry A. Kazakov
2005-03-23 13:49                           ` [OT] Re: Teaching new tricks to an old dog (C++ -->Ada) Matthew Heaney
2005-03-23 15:27                             ` Chris Jefferson
2005-03-11 19:01                     ` REH
2005-03-11 19:43                       ` Ioannis Vranos
2005-03-11 20:03                         ` Ioannis Vranos
2005-03-11 20:08                         ` REH
2005-03-12 11:09                           ` Peter Koch Larsen
2005-03-11 20:14                         ` Marius Amado Alves
2005-03-11 19:23                     ` Ioannis Vranos
2005-03-11 19:54                       ` REH
2005-03-12  6:10                         ` Ioannis Vranos
2005-03-12  6:29                           ` Ioannis Vranos
2005-03-12  6:35                             ` Ioannis Vranos
2005-03-12 12:16                               ` REH
2005-03-12 12:57                                 ` Ioannis Vranos
2005-03-12 13:26                                   ` REH
2005-03-12 17:46                                 ` CTips
2005-03-12 18:40                                   ` Martin Krischik
2005-03-12 19:28                                     ` Ioannis Vranos
2005-03-13  9:29                                       ` Martin Krischik
2005-03-13 15:45                                         ` Ioannis Vranos
2005-03-13 17:04                                           ` Martin Krischik
2005-03-12 18:51                                   ` Jeff C
2005-03-12 18:53                                   ` Ed Falis
2005-03-12 19:40                                     ` CTips
2005-03-13  8:43                                     ` Martin Krischik
2005-03-12 19:14                                   ` Robert A Duff
2005-03-12 21:48                                   ` Martin Dowie
2005-03-12 23:17                                   ` REH
2005-03-21 21:07                               ` Robert A Duff
2005-03-21 23:07                                 ` Ioannis Vranos
2005-03-24  2:24                                   ` Matthew Heaney
2005-03-23 17:26                             ` adaworks
2005-03-23 18:53                               ` Dr. Adrian Wrigley
2005-03-23 21:39                                 ` Ioannis Vranos
2005-03-23 21:55                                   ` REH
2005-03-24  1:14                                   ` Dr. Adrian Wrigley
2005-03-24  1:44                                     ` Ioannis Vranos
2005-03-24  2:26                                       ` Ioannis Vranos
2005-03-12 12:40                           ` REH
     [not found]                         ` <1110607809.837000@at <1110655701.196383@athnrd02>
2005-03-13  3:21                           ` Greg Comeau
2005-03-13  7:48                             ` Ioannis Vranos
2005-03-13 14:20                               ` Greg Comeau
2005-03-13 16:33                         ` Larry Kilgallen
2005-03-12 11:56                       ` Martin Krischik
2005-03-10 21:18               ` Pascal Obry
2005-03-11  4:36                 ` Ioannis Vranos
2005-03-11  7:39                   ` Pascal Obry
2005-03-11  4:58                 ` Jerry Coffin
2005-03-11  7:32                   ` Pascal Obry
2005-03-11  7:48                     ` Ioannis Vranos
2005-03-11 18:30                       ` Pascal Obry
2005-03-11 19:28                         ` Ioannis Vranos
2005-03-11 22:34                     ` Wes Groleau
2005-03-11 22:27                   ` Wes Groleau
2005-03-11 23:25                   ` Ludovic Brenta
2005-03-12 11:20                     ` Martin Krischik
2005-03-10 22:18               ` [OT] " Paul E. Bennett
2005-03-11  2:52                 ` Larry Kilgallen
2005-03-11 22:46                   ` Wes Groleau
2005-03-10 22:35               ` Wes Groleau
2005-03-11  9:38                 ` Peter Amey
2005-03-10 23:37               ` Martin Dowie
2005-03-10 23:58                 ` Georg Bauhaus
2005-03-05 20:55         ` Simon Wright
2005-03-05 22:05         ` Paul E. Bennett
2005-03-06 10:09           ` Martin Krischik
2005-03-06 11:39             ` Paul E. Bennett
2005-03-06 12:35               ` Mark Lorenzen
2005-03-06 13:26               ` Ludovic Brenta
2005-03-07 10:03               ` Martin Krischik
2005-03-07 23:35                 ` Ludovic Brenta
2005-03-06 21:09             ` Wouter van Ooijen (www.voti.nl)
2005-03-07  9:58               ` Martin Krischik
2005-03-05 16:16       ` Mark Lorenzen
2005-03-05 16:42       ` Martin Krischik
2005-03-05 20:14         ` Ioannis Vranos
2005-03-05 20:22           ` Ludovic Brenta
2005-03-05 21:32           ` Martin Krischik
2005-03-05 19:54       ` Larry Kilgallen
2005-03-05 22:33         ` Peter Koch Larsen
2005-03-06  1:07           ` Martin Dowie
2005-03-06  4:47           ` Larry Kilgallen
2005-03-06  9:22             ` Peter Koch Larsen
2005-03-06  9:42               ` Dmitry A. Kazakov
2005-03-06 13:16               ` Larry Kilgallen
2005-03-06 21:14               ` Wouter van Ooijen (www.voti.nl)
2005-03-06 23:19               ` Wes Groleau
2005-03-06 11:44             ` Paul E. Bennett
2005-03-06 12:54               ` Leif Roar Moldskred
2005-03-06 21:15               ` Wouter van Ooijen (www.voti.nl)
2005-03-14 17:36               ` jtg
2005-03-06  9:57           ` Martin Krischik
2005-03-06 21:13           ` Wouter van Ooijen (www.voti.nl)
2005-03-06 20:45       ` Wouter van Ooijen (www.voti.nl)
2005-03-05 17:14   ` Pascal Obry
2005-03-07 11:45     ` Vinzent 'Gadget' Hoefler
2005-03-07 19:01       ` Pascal Obry
2005-03-05 19:52   ` Larry Kilgallen
2005-03-05 20:24     ` xpyttl
2005-03-06 20:36       ` Wouter van Ooijen (www.voti.nl)
2005-03-10 18:26   ` Preben Randhol
2005-03-05 14:39 ` Dmitry A. Kazakov
2005-03-05 15:03 ` Matthias Kaeppler
2005-03-05 16:26   ` Mark Lorenzen
2005-03-05 20:19     ` Ioannis Vranos
2005-03-05 20:24       ` Mark Lorenzen
2005-03-06 20:40         ` Wouter van Ooijen (www.voti.nl)
2005-03-07  6:14           ` Mark A. Biggar
2005-03-05 20:28       ` Ludovic Brenta
2005-03-05 21:14         ` Paul E. Bennett
2005-03-05 22:08       ` Larry Kilgallen
2005-03-05 22:37         ` Peter Koch Larsen
2005-03-06  9:40           ` Martin Krischik
2005-03-06  1:49       ` Larry Elmore
2005-03-06  1:46         ` Ioannis Vranos
2005-03-06 20:38     ` Wouter van Ooijen (www.voti.nl)
2005-03-05 15:24 ` Jeff C
2005-03-05 19:11   ` Ed Falis
2005-03-10 18:25 ` Preben Randhol
2005-03-12 22:45 ` dave
2005-03-12 22:56   ` Ioannis Vranos
2005-03-13  2:18     ` dave
2005-03-14 17:33 ` jtg
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox