Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
mcgrof
/
linker-tables
/
7be2de17daac1cad9b03fcf1e309be483fc0ccf5
/
.
/
xen.c
blob: bcae856c7a35cfd188d0a6bb92b4bdee2ca7f3c3 [
file
]
#include
<stdio.h>
#include
<stdbool.h>
static
bool
__booting_xen
=
false
;
bool
booting_xen
(
void
)
{
return
__booting_xen
;
}
int
xen_start
(
void
)
{
__booting_xen
=
true
;
printf
(
"Initializing Xen guest\n"
);
return
0
;
}