comp.lang.ada
 help / color / mirror / Atom feed
From: Pascal Obry <pascal@obry.org>
Subject: Re: Teaching new tricks to an old dog (C++ -->Ada)
Date: 16 Mar 2005 16:59:38 +0100
Date: 2005-03-16T16:59:41+01:00	[thread overview]
Message-ID: <uy8cnr385.fsf@obry.org> (raw)
In-Reply-To: 1110980817.650794@athnrd02


Ioannis Vranos <ivr@remove.this.grad.com> writes:

> I had Ada template library in mind as 

No problem, it is built in plain Ada.

> also as "information systems ("money
> computing"), string processing, Ada subsetting definitions (what's this?)"
> from those mentioned.

I think this is the way to restrict the language. In some area it is very
important to avoid memory allocation, you can add a pragma like;

   pragma Restrictions (No_Allocators);

Here are the current (read Ada95) set of restrictions:

* Safety and Security Restrictions
====================

  1. This clause defines restrictions that can be used with pragma
     Restrictions, see *Note 13.12::, these facilitate the
     demonstration of program correctness by allowing tailored versions
     of the run-time system.


                             _Static Semantics_

  2. The following restrictions, the same as in *Note D.7::, apply in
     this Annex: No_Task_Hierarchy, No_Abort_Statement,
     No_Implicit_Heap_Allocation, Max_Task_Entries is 0,
     Max_Asynchronous_Select_Nesting is 0, and Max_Tasks is 0. The last
     three restrictions are checked prior to program execution.

  3. The following additional restrictions apply in this Annex.

  4. Tasking-related restriction:

  5. No_Protected_Types

          There are no declarations of protected types or protected
          objects.

  6. Memory-management related restrictions:

  7. No_Allocators

          There are no occurrences of an allocator.

  8. No_Local_Allocators

          Allocators are prohibited in subprograms, generic sub-programs,
          tasks, and entry bodies; instantiations of generic
          packages are also prohibited in these contexts.

  9. No_Unchecked_Deallocation

          Semantic dependence on Unchecked_Deallocation is not allowed.

 10. Immediate_Reclamation

          Except for storage occupied by objects created by allocators
          and not deallocated via unchecked deallocation, any storage
          reserved at run time for an object is immediately reclaimed
          when the object no longer exists.

 11. Exception-related restriction:

 12. No_Exceptions

          Raise_statements and exception_handlers are not allowed. No
          language-defined run-time checks are generated; however, a
          run-time check performed automatically by the hardware is
          permitted.

 13. Other restrictions:

 14. No_Floating_Point

          Uses of predefined floating point types and operations, and
          declarations of new floating point types, are not allowed.

 15. No_Fixed_Point

          Uses of predefined fixed point types and operations, and
          declarations of new fixed point types, are not allowed.

 16. No_Unchecked_Conversion

          Semantic dependence on the predefined generic
          Unchecked_Conversion is not allowed.

 17. No_Access_Subprograms

          The declaration of access-to-subprogram types is not allowed.

 18. No_Unchecked_Access

          The Unchecked_Access attribute is not allowed.

 19. No_Dispatch

          Occurrences of T'Class are not allowed, for any (tagged)
          subtype T.

 20. No_IO

          Semantic dependence on any of the library units
          Sequential_IO, Direct_IO, Text_IO, Wide_Text_IO, or Stream_IO
          is not allowed.

 21. No_Delay

          Delay_Statements and semantic dependence on package Calendar
          are not allowed.

 22. No_Recursion

          As part of the execution of a subprogram, the same subprogram
          is not invoked.

 23. No_Reentrancy

          During the execution of a subprogram by a task, no other task
          invokes the same subprogram.


* The Tasking Restrictions
====================

  1. This clause defines restrictions that can be used with a pragma
     Restrictions, see *Note 13.12::, to facilitate the construction of
     highly efficient tasking run-time systems.


                             _Static Semantics_

  2. The following restriction_identifiers are language defined:

  3. No_Task_Hierarchy

          All (nonenvironment) tasks depend directly on the environment
          task of the partition.

  4. No_Nested_Finalization

          Objects with controlled parts and access types that designate
          such objects shall be declared only at library level.

  5. No_Abort_Statements

          There are no abort_statements, and there are no calls on
          Task_Identification.Abort_Task.

  6. No_Terminate_Alternatives

          There are no selective_accepts with terminate_alternatives.

  7. No_Task_Allocators

          There are no allocators for task types or types containing
          task subcomponents.

  8. No_Implicit_Heap_Allocations

          There are no operations that implicitly require heap storage
          allocation to be performed by the implementation. The
          operations that implicitly require heap storage allocation
          are implementation defined.

  9. No_Dynamic_Priorities

          There are no semantic dependences on the package
          Dynamic_Priorities.

 10. No_Asynchronous_Control

          There are no semantic dependences on the package
          Asynchronous_Task_Control.

 11. The following restriction_parameter_identifiers are language
     defined:

 12. Max_Select_Alternatives

          Specifies the maximum number of alternatives in a
          selective_accept.

 13. Max_Task_Entries

          Specifies the maximum number of entries per task. The bounds
          of every entry family of a task unit shall be static, or
          shall be defined by a discriminant of a subtype whose
          corresponding bound is static. A value of zero indicates
          that no rendezvous are possible.

 14. Max_Protected_Entries

          Specifies the maximum number of entries per protected type.
          The bounds of every entry family of a protected unit shall be
          static, or shall be defined by a discriminant of a subtype
          whose corresponding bound is static.


                            _Dynamic Semantics_

 15. If the following restrictions are violated, the behavior is
     implementation defined. If an implementation chooses to detect
     such a violation, Storage_Error should be raised.

 16. The following restriction_parameter_identifiers are language
     defined:

 17. Max_Storage_At_Blocking

          Specifies the maximum portion (in storage elements) of a
          task's Storage_Size that can be retained by a blocked task.

 18. Max_Asynchronous_Select_Nesting

          Specifies the maximum dynamic nesting level of
          asynchronous_selects. A value of zero prevents the use of any
          asynchronous_select.

 19. Max_Tasks

          Specifies the maximum number of task creations that may be
          executed over the lifetime of a partition, not counting the
          creation of the environment task.

 20. It is implementation defined whether the use of pragma Restrictions
     results in a reduction in executable program size, storage
     requirements, or execution time. If possible, the implementation
     should provide quantitative descriptions of such effects for each
     restriction.


Pascal.

-- 

--|------------------------------------------------------
--| Pascal Obry                           Team-Ada Member
--| 45, rue Gabriel Peri - 78114 Magny Les Hameaux FRANCE
--|------------------------------------------------------
--|              http://www.obry.org
--| "The best way to travel is by means of imagination"
--|
--| gpg --keyserver wwwkeys.pgp.net --recv-key C1082595



  reply	other threads:[~2005-03-16 15:59 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 [this message]
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
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