From: David Brown <caml-list@davidb.org>
To: Jonathan Roewen <jonathan.roewen@gmail.com>
Cc: caml-list@yquem.inria.fr
Subject: Re: [Caml-list] GC, Anonymous Functions, and C
Date: Fri, 17 Dec 2004 15:05:31 -0800 [thread overview]
Message-ID: <20041217230531.GA20427@old.davidb.org> (raw)
In-Reply-To: <ad8cfe7e0412171355b901128@mail.gmail.com>
On Sat, Dec 18, 2004 at 10:55:23AM +1300, Jonathan Roewen wrote:
> When passing an anonymous ocaml function to a C function, is it safe
> to store that value in an array, and then call it later at an abitrary
> time, or will the GC reclaim it? And if so, what should be done to
> stop the GC from doing so?
You'll need to register the value as a global root, using
register_global_root. Please see the Interfacing C with Objective Caml,
where there is brief mention of this function. It is also important to
dereference the value each time you use it.
static value hook = Val_int (0);
...
hook = passed_argument;
register_global_root (&hook);
...
callback (hook, arg);
You can also use remove_global_root() later to remove the reference.
Dave
next prev parent reply other threads:[~2004-12-17 23:05 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-12-17 21:55 Jonathan Roewen
2004-12-17 22:56 ` Richard Jones
2004-12-17 23:05 ` David Brown [this message]
2004-12-17 23:09 ` Damien Doligez
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=20041217230531.GA20427@old.davidb.org \
--to=caml-list@davidb.org \
--cc=caml-list@yquem.inria.fr \
--cc=jonathan.roewen@gmail.com \
/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