source: trunk/packages/xen-3.1/xen-3.1/xen/arch/powerpc/machine_kexec.c @ 34

Last change on this file since 34 was 34, checked in by hartmans, 18 years ago

Add xen and xen-common

File size: 820 bytes
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
6int 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
12void machine_kexec_unload(int type, int slot, xen_kexec_image_t *image)
13{
14    printk("STUB: " __FILE__ ": %s: not implemented\n", __FUNCTION__);
15}
16
17void machine_reboot_kexec(xen_kexec_image_t *image)
18{
19    printk("STUB: " __FILE__ ": %s: not implemented\n", __FUNCTION__);
20}
21
22void 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.