From: Markus Mottl <markus@oefai.at>
To: Tomasz Zielonka <zielony@cs.net.pl>
Cc: CAML list <caml-list@inria.fr>
Subject: Re: [Caml-list] Using C values in ocaml code
Date: Thu, 31 Jan 2002 12:12:51 +0100 [thread overview]
Message-ID: <20020131111251.GA27804@chopin.ai.univie.ac.at> (raw)
In-Reply-To: <20020131101112.GA30020@cs.net.pl>
On Thu, 31 Jan 2002, Tomasz Zielonka wrote:
> value
> get_some_value(value unit)
> {
> CAMLparam1(unit);
> Datum x;
> x = foo();
> CAMLreturn((value) x)
> }
You can't just cast 'x' to an OCaml-value: if it is an integer, you'll
have to use the "Val_int"-macro. Otherwise the integer might exceed the
range allowed by OCaml and could be interpreted as a pointer by the GC,
possibly resulting in a crash (integers need to be tagged).
If it is a pointer to something allocated by C, you could return it
directly, but this may cause troubles if you deallocate this region of
memory while the value is still reachable from the OCaml-world (read
section 17.2.3 to learn what can happen).
Therefore you should use a more appropriate encoding. If you don't want
the GC to notify your C-program that the value is not reachable from your
program anymore (i.e. can be finalized/deallocated), then just allocate
a block tagged abstract of size 1, e.g:
value v = alloc_small(1, Abstract_tag);
and write your pointer into its (only) field using the Field-macro:
Field(v, 0) = foo();
The above works with integers (no need for conversions then), too, btw.
If you want to have a function for finalization/deallocation called by
the GC but don't want to handle custom blocks in their full generality,
just use "alloc_final". It allows you to pass a finalization function
+ some GC-parameters and creates a custom block with the other custom
functions (hashing, etc.), set to default values.
See the manual for details...
Regards,
Markus Mottl
--
Markus Mottl markus@oefai.at
Austrian Research Institute
for Artificial Intelligence http://www.oefai.at/~markus
-------------------
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
next prev parent reply other threads:[~2002-01-31 11:12 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-01-31 10:11 Tomasz Zielonka
2002-01-31 11:12 ` Markus Mottl [this message]
2002-01-31 15:05 ` Tomasz Zielonka
2002-01-31 15:23 ` Markus Mottl
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20020131111251.GA27804@chopin.ai.univie.ac.at \
--to=markus@oefai.at \
--cc=caml-list@inria.fr \
--cc=zielony@cs.net.pl \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox