repo.or.cz
/
linux-2.6
/
next.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add linux-next specific files for 20110831
[linux-2.6/next.git]
/
tools
/
kvm
/
tests
/
boot
/
init.c
blob
094f8ba3731720bb5bb0640b07c799c92d951b21
1
#include <linux/reboot.h>
2
#include <unistd.h>
3
4
int
main
(
int
argc
,
char
*
argv
[])
5
{
6
puts
(
"hello, KVM guest!
\r
"
);
7
8
reboot
(
LINUX_REBOOT_CMD_RESTART
);
9
10
return
0
;
11
}