search for: cbff846

Displaying 4 results from an estimated 4 matches for "cbff846".

Did you mean: bff8469
2015 Oct 06
0
[PATCH 1/4] ocaml: Use generational global roots.
...| | | | | Optional if compiling from tarball. | | | | | To build generated files and OCaml bindings. +--------------+-------------+---+-----------------------------------------+ diff --git a/ocaml/guestfs-c.c b/ocaml/guestfs-c.c index cbff846..1ee5ba7 100644 --- a/ocaml/guestfs-c.c +++ b/ocaml/guestfs-c.c @@ -88,12 +88,12 @@ guestfs_finalize (value gv) /* Now unregister the global roots. */ for (i = 0; i < len; ++i) { - caml_remove_global_root (roots[i]); + caml_remove_generational_global_root (roots[i]);...
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 05
0
[PATCH 2/2] Fix whitespace.
..., _("%s: %s command failed\n"), guestfs_int_program_name, argv[0]); + fprintf (stderr, _("%s: %s command failed\n"), + guestfs_int_program_name, argv[0]); return -1; } return 0; diff --git a/ocaml/guestfs-c.c b/ocaml/guestfs-c.c index 03e3659..cbff846 100644 --- a/ocaml/guestfs-c.c +++ b/ocaml/guestfs-c.c @@ -49,11 +49,11 @@ static void event_callback_wrapper (guestfs_h *g, void *data, uint64_t event, in /* This macro was added in OCaml 3.10. Backport for earlier versions. */ #ifndef CAMLreturnT -#define CAMLreturnT(type, result) do{ \ - t...
2015 Oct 05
3
[PATCH 1/2] Change 'fprintf (stdout,...)' -> printf.
Result of earlier copy and paste. --- align/scan.c | 35 ++++++++++--------- cat/cat.c | 39 +++++++++++---------- cat/filesystems.c | 69 +++++++++++++++++++------------------- cat/log.c | 35 ++++++++++--------- cat/ls.c | 61 +++++++++++++++++---------------- df/main.c | 43 ++++++++++++------------ diff/diff.c | 67