Displaying 2 results from an estimated 2 matches for "_ocaml_g".
Did you mean:
_ocaml
2015 Oct 06
6
[PATCH 0/4] ocaml: Allow Guestfs.t handle to be garbage collected.
Allow Guestfs.t handle to be garbage collected, and add a
regression test.
2015 Oct 06
0
[PATCH 1/4] ocaml: Use generational global roots.
..._int_safe_malloc (g, sizeof *v);
*v = gv;
- /* XXX This global root is generational, but we cannot rely on every
- * user having the OCaml 3.11 version which supports this.
- */
- caml_register_global_root (v);
+ caml_register_generational_global_root (v);
guestfs_set_private (g, "_ocaml_g", v);
CAMLreturn (gv);
@@ -255,10 +252,7 @@ ocaml_guestfs_set_event_callback (value gv, value closure, value events)
ocaml_guestfs_raise_error (g, "set_event_callback");
}
- /* XXX This global root is generational, but we cannot rely on every
- * user having the OCa...