summaryrefslogblamecommitdiff
path: root/src/include/tce/syscalls.h
blob: 6c675234f3b881d8a301b7b009f96b348ca05e4c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                          
 

                  
                      




















                                                                                                           

      
#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