aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-arm/init.h
blob: 5ac8cf8797d6bf77d2bd983c7854ff86c1d14213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _XEN_ASM_INIT_H
#define _XEN_ASM_INIT_H

struct init_info
{
    /* Pointer to the stack, used by head.S when entering in C */
    unsigned char *stack;
    /* Logical CPU ID, used by start_secondary */
    unsigned int cpuid;
};

#endif /* _XEN_ASM_INIT_H */
/*
 * Local variables:
 * mode: C
 * c-file-style: "BSD"
 * c-basic-offset: 4
 * indent-tabs-mode: nil
 * End:
 */