Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions libs/xc/xenctrl_stubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,10 @@ CAMLprim value mock5 (value v1, value v2, value v3, value v4, value v5)
caml_failwith(msg);
CAMLreturn (result);
}

CAMLprim value stub_xc_domain_numa_get_node_pages(value v1, value v2)
{
CAMLparam2(v1, v2);
caml_failwith(__func__);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This function breaks the pattern established by the other functions above. Should they use CAMLnoreturn as well and use caml_failwith(__func__)?

CAMLnoreturn;
}