summaryrefslogtreecommitdiff
path: root/src/common/include/tce/syscalls.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/include/tce/syscalls.h')
-rw-r--r--src/common/include/tce/syscalls.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/common/include/tce/syscalls.h b/src/common/include/tce/syscalls.h
deleted file mode 100644
index 6c67523..0000000
--- a/src/common/include/tce/syscalls.h
+++ /dev/null
@@ -1,38 +0,0 @@
-#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 10
-#define SC_BRK 11
-// NOT YET IMPLEMENTED
-#define SC_MMAP 12
-#define SC_MUNMAP 13
-
-#define SC_OPEN 20
-#define SC_OPEN_RELATIVE 21
-#define SC_STAT 22
-#define SC_STAT_RELATIVE 23
-#define SC_STATF 24
-#define SC_CLOSE 25
-#define SC_READ 26
-#define SC_WRITE 27
-#define SC_LINK 28
-
-
-// ERRORS
-#define E_NOT_IMPLEMENTED -1
-#define E_NOT_FOUND -2
-#define E_INVALID_FD -3
-#define E_TOO_SHORT -4 // not enough space for data to be copied to
-#define E_INVALID_RANGE -5
-#define E_INVALID -6 // anything went wrong - invalid parameter, usually
-
-#endif