projects
/
akaros.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
user/vmm: add and use a load_elf function
[akaros.git]
/
tests
/
old
/
msr_single_while.c
1
/* tests/msr_single_while.c
2
*
3
* just sits in a while loop in _S mode. */
4
5
int main(int argc, char** argv)
6
{
7
while(1);
8
return -1;
9
}
10