repo.or.cz
/
pintos.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Wording.
[pintos.git]
/
src
/
examples
/
halt.c
blob
bad7250772f2856db66dd455231705483e27bb67
1
/* halt.c
2
3
Simple program to test whether running a user program works.
4
5
Just invokes a system call that shuts down the OS. */
6
7
#include <syscall.h>
8
9
int
10
main
(
void
)
11
{
12
halt
();
13
/* not reached */
14
}