[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Christoph Bauer <christoph.bauer@l...> |
| Subject: | C Interface and float record |
Hi,
I have a type
type t = {
f1 : float;
f2 : float;
f3 : float;
}
and a external C-function should allocate this as for the result.
Do I have to use
caml_alloc(6, Double_array_tag)
to allocate such a record? I'm unsure about the 6.
Could I also use caml_alloc_small?
Thanks,
Christoph Bauer