search for: send_debug_key

Displaying 3 results from an estimated 3 matches for "send_debug_key".

Did you mean: send_debug_keys
2012 Nov 20
0
[PATCH 15 of 15] libxl: ocaml: add bindings for libxl_domain_create_new
...--- a/tools/ocaml/libs/xl/xenlight.ml.in Tue Nov 20 17:22:21 2012 +0000 +++ b/tools/ocaml/libs/xl/xenlight.ml.in Tue Nov 20 17:22:21 2012 +0000 @@ -72,4 +72,6 @@ external send_trigger : domid -> trigger external send_sysrq : domid -> char -> unit = "stub_xl_send_sysrq" external send_debug_keys : ctx -> string -> unit = "stub_xl_send_debug_keys" +external domain_create_new : ctx -> Domain_config.t -> domid = "stub_xl_domain_create_new" + let _ = Callback.register_exception "Xenlight.Error" (Error(Fail, "")) diff -r 41f0137955f4 -r 72...
2013 Mar 25
86
[PATCH 00/28] libxl: ocaml: improve the bindings
The following series of patches fill in most of the gaps in the OCaml bindings to libxl, to make them useful for clients such as xapi/xenopsd (from XCP). There are a number of bugfixes to the existing bindings as well. I have an experimental version of xenopsd that successfully uses the new bindings. An earlier version of the first half of the series was submitted to the last by Ian Campbell on
2010 Jun 28
8
[PATCH] add xl ocaml bindings
...in_sched_credit_set : domid -> sched_credit -> unit = "stub_xl_sched_credit_domain_set" + +external send_trigger : domid -> string -> int -> unit = "stub_xl_send_trigger" +external send_sysrq : domid -> char -> unit = "stub_xl_send_sysrq" +external send_debug_keys : domid -> string -> unit = "stub_xl_send_debug_keys" diff --git a/tools/ocaml/libs/xl/xl.mli b/tools/ocaml/libs/xl/xl.mli new file mode 100644 index 0000000..0f665ae --- /dev/null +++ b/tools/ocaml/libs/xl/xl.mli @@ -0,0 +1,209 @@ +(* + * Copyright (C) 2009-2010 Citrix Ltd. + * Au...