summaryrefslogtreecommitdiffstats
path: root/ocaml/guestfs_c.c
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2009-11-06 10:48:37 +0000
committerRichard W.M. Jones <rjones@redhat.com>2009-11-06 10:49:32 +0000
commit79125c4dea9c69d08b522ed7c85f26dc6ee1bcb3 (patch)
treef17bff35f18aab05c5e74ebd91ca051aa575647a /ocaml/guestfs_c.c
parente1f5472395b08033c60054e8f87f3c61126c4fa4 (diff)
downloadlibguestfs-79125c4dea9c69d08b522ed7c85f26dc6ee1bcb3.tar.gz
libguestfs-79125c4dea9c69d08b522ed7c85f26dc6ee1bcb3.tar.xz
libguestfs-79125c4dea9c69d08b522ed7c85f26dc6ee1bcb3.zip
ocaml: General improvements to generated code.
Diffstat (limited to 'ocaml/guestfs_c.c')
-rw-r--r--ocaml/guestfs_c.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/ocaml/guestfs_c.c b/ocaml/guestfs_c.c
index 80dcf995..f7d8dff8 100644
--- a/ocaml/guestfs_c.c
+++ b/ocaml/guestfs_c.c
@@ -93,6 +93,17 @@ ocaml_guestfs_raise_error (guestfs_h *g, const char *func)
CAMLnoreturn;
}
+void
+ocaml_guestfs_raise_closed (const char *func)
+{
+ CAMLparam0 ();
+ CAMLlocal1 (v);
+
+ v = caml_copy_string (func);
+ caml_raise_with_arg (*caml_named_value ("ocaml_guestfs_closed"), v);
+ CAMLnoreturn;
+}
+
/* Guestfs.create */
CAMLprim value
ocaml_guestfs_create (void)