search for: vb_notify

Displaying 1 result from an estimated 1 matches for "vb_notify".

2010 Dec 02
1
Making a hypercall in DomU
...(recursively) to the DomU Here''s the code I wrote to invoke hypercall: #include <stdio.h> #include <xenctrl.h> int main(void){ int xc_handle, rc; xc_handle = xc_interface_open(); printf("\n Opened Interface: %d",xc_handle); rc = vb_notify(xc_handle); ---- Is a function implemented in libxc/ which has the hypercall invocation code printf("\n vb_notify returned: %d", rc); xc_interface_close(xc_handle); return rc; } When I try to compile the program which contains the hyperca...