summaryrefslogtreecommitdiff
path: root/src/common/include/tce/syscalls.h
blob: 3b5b68ffcf7dc5951eb357d7e5215698968949e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef DEF_TCE_SYSCALLS_H
#define DEF_TCE_SYSCALLS_H

#define SC_THREAD_EXIT 1
#define SC_SCHEDULE 2
#define SC_THREAD_SLEEP 3
#define SC_PROCESS_EXIT 4
#define SC_PRINTK 5
#define SC_THREAD_NEW 6
#define SC_IRQ_WAIT 7
#define SC_PROC_PRIV 8
#define SC_SBRK 9
#define SC_BRK 10

// NOT YET IMPLEMENTED
#define SC_MMAP 11
#define SC_MUNMAP 12

#endif