Skip to content

Commit 9d96dca

Browse files
authored
Merge pull request #16 from xapi-project/private/edvint/fix-build
Add missing NUMA stub function
2 parents 4ad9974 + 52670bb commit 9d96dca

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

libs/xc/xenctrl_stubs.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,10 @@ CAMLprim value mock5 (value v1, value v2, value v3, value v4, value v5)
5151
caml_failwith(msg);
5252
CAMLreturn (result);
5353
}
54+
55+
CAMLprim value stub_xc_domain_numa_get_node_pages(value v1, value v2)
56+
{
57+
CAMLparam2(v1, v2);
58+
caml_failwith(__func__);
59+
CAMLnoreturn;
60+
}

0 commit comments

Comments
 (0)