Browse thread
ocaml for embedding
[
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: | 2010-07-12 (09:14) |
From: | David MENTRE <dmentre@l...> |
Subject: | Re: [Caml-list] ocaml for embedding |
Hello, 2010/7/9 Gaspard Bucher <gaspard@teti.ch>: > From my understanding of the use of > caml_startup (or caml_main), this means that the caml runtime is > global. Yes. > Is there a way to avoid: > > 1. global locking (or locking only during script recompilation) I don't think so. > 2. script level encapsulation I don't know. You might play with the C symbols and a bit a C pre-processing to generate several different OCaml runtimes that would be linked with you application. But, as far as I know, the OCaml runtime has not be designed to be included several times within the same application. Sincerely yours, david