search for: c_state

Displaying 2 results from an estimated 2 matches for "c_state".

Did you mean: _state
2010 Jan 12
2
reserve_ram_pages_type failed
On Mon, Jan 11, 2010 at 10:13 AM, Xavier <shiningxc at gmail.com> wrote: > [ ?268.666662] reserve_ram_pages_type failed 0x9cba000-0x9cbb000, > track 0x8, req 0x10 > [ ?269.001031] reserve_ram_pages_type failed 0x6ff0000-0x6ff1000, > track 0x8, req 0x10 > [ ?269.474134] reserve_ram_pages_type failed 0x68f2000-0x68f3000, > track 0x8, req 0x10 > [ ?269.767270]
2010 Jun 28
8
[PATCH] add xl ocaml bindings
...); + + FREE_CTX(); + + free(c_info.xsdata); + free(c_info.platformdata); + + CAMLreturn(Val_int(domid)); +} + +value stub_xl_domain_build(value info, value domid) +{ + CAMLparam2(info, domid); + CAMLlocal1(result); + struct libxl_ctx ctx; + libxl_domain_build_info c_info; + libxl_domain_build_state c_state; + int ret; + int c_domid; + + domain_build_info_val (&c_info, info); + c_domid = Int_val(domid); + + INIT_CTX(); + + ret = libxl_domain_build(&ctx, &c_info, c_domid, &c_state); + if (ret != 0) + failwith_xl("domain_build"); + + result = Val_domain_build_state(&c_stat...