Line | |
---|
1 | #include <xen/lib.h> /* for printk() used in stubs */ |
---|
2 | #include <xen/types.h> |
---|
3 | #include <xen/kexec.h> |
---|
4 | #include <public/kexec.h> |
---|
5 | |
---|
6 | int machine_kexec_load(int type, int slot, xen_kexec_image_t *image) |
---|
7 | { |
---|
8 | printk("STUB: " __FILE__ ": %s: not implemented\n", __FUNCTION__); |
---|
9 | return -1; |
---|
10 | } |
---|
11 | |
---|
12 | void machine_kexec_unload(int type, int slot, xen_kexec_image_t *image) |
---|
13 | { |
---|
14 | printk("STUB: " __FILE__ ": %s: not implemented\n", __FUNCTION__); |
---|
15 | } |
---|
16 | |
---|
17 | void machine_reboot_kexec(xen_kexec_image_t *image) |
---|
18 | { |
---|
19 | printk("STUB: " __FILE__ ": %s: not implemented\n", __FUNCTION__); |
---|
20 | } |
---|
21 | |
---|
22 | void machine_kexec(xen_kexec_image_t *image) |
---|
23 | { |
---|
24 | printk("STUB: " __FILE__ ": %s: not implemented\n", __FUNCTION__); |
---|
25 | } |
---|
26 | |
---|
27 | /* |
---|
28 | * Local variables: |
---|
29 | * mode: C |
---|
30 | * c-set-style: "BSD" |
---|
31 | * c-basic-offset: 4 |
---|
32 | * tab-width: 4 |
---|
33 | * indent-tabs-mode: nil |
---|
34 | * End: |
---|
35 | */ |
---|
Note: See
TracBrowser
for help on using the repository browser.