comp.lang.ada
 help / color / mirror / Atom feed
From: Robert A Duff <bobduff@shell01.TheWorld.com>
Subject: Re: Interfacing to C: big structures
Date: Tue, 26 Feb 2008 20:37:17 -0500
Date: 2008-02-26T20:37:17-05:00	[thread overview]
Message-ID: <wccfxvfji2a.fsf@shell01.TheWorld.com> (raw)
In-Reply-To: 56a177e4-506f-4bc8-a531-7f2dd15d50c8@i7g2000prf.googlegroups.com

Adam Beneschan <adam@irvine.com> writes:

> I thought of something like this, but Maciej said something about
> wanting to avoid dynamic memory,...

I think Maciej is trying to avoid heap allocation, because then you have
to worry about deallocation.  But dynamic-sized allocation on the stack
should be OK in that regard.  If you don't like the dynamic size (it
does introduce some inefficiency), then you could do this:

S_Size : constant := 24; -- or whatever you know it is
pragma Assert (S_Size = Size_Of_S);
type S is new Ada.Streams.Stream_Element_Array (1 .. S_Size);
for S'Alignment use ...;

Now the Ada compiler knows the right size statically.
If the C code changes, you have to change 24 to something else,
but at least you get notified to do so (the simplest testing
will fail on the Assert).

- Bob



  parent reply	other threads:[~2008-02-27  1:37 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-02-25 21:17 Interfacing to C: big structures Maciej Sobczak
2008-02-25 23:26 ` Randy Brukardt
2008-02-25 23:26 ` Randy Brukardt
2008-02-27 13:23   ` Maciej Sobczak
2008-02-25 23:26 ` Randy Brukardt
2008-02-25 23:43 ` Robert A Duff
2008-02-26 13:53   ` Stephen Leake
2008-02-26 21:12     ` Randy Brukardt
2008-02-26  2:36 ` Steve
2008-02-26 12:00 ` Alex R. Mosteo
2008-02-26 14:05   ` Robert A Duff
2008-02-26 15:19     ` Alex R. Mosteo
2008-02-26 15:33       ` Robert A Duff
2008-02-26 16:21         ` Alex R. Mosteo
2008-02-27  1:28           ` Robert A Duff
2008-03-10  1:38             ` David Thompson
2008-02-26 17:35   ` Adam Beneschan
2008-02-26 19:47     ` Simon Wright
2008-02-26 21:14       ` Randy Brukardt
2008-02-27  1:40         ` Robert A Duff
2008-02-27 17:12       ` Adam Beneschan
2008-02-27 20:37         ` Simon Wright
2008-02-28 11:30         ` Alex R. Mosteo
2008-02-28 15:53           ` Robert A Duff
2008-02-29 10:45             ` Alex R. Mosteo
2008-02-27  1:37     ` Robert A Duff [this message]
2008-02-27 13:49       ` Maciej Sobczak
replies disabled

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