repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git]
/
arch
/
ppc-sam440
/
kernel
/
syscall.h
blob
b23075d8fed6435c2663c9801d0d0bc39f754741
1
#ifndef SYSCALL_H_
2
#define SYSCALL_H_
3
4
#define SC_CAUSE 0
5
#define SC_DISPATCH 1
6
#define SC_SWITCH 2
7
#define SC_SCHEDULE 3
8
#define SC_CLI 4
9
#define SC_STI 5
10
#define SC_SUPERSTATE 6
11
#define SC_ISSUPERSTATE 7
12
13
#endif
/*SYSCALL_H_*/