0ad441334ed3c46f3c841a1207af78fe73b8f4a8
[tpg/acess2.git] / KernelLand / Kernel / include / syscalls.h
1 /*
2  * Acess2 Kernel
3  * - By John Hodge (thePowersGang)
4  *
5  * syscalls.h
6  * - System Call List
7  *
8  * NOTE: Generated from Kernel/syscalls.lst
9  */
10 #ifndef _SYSCALLS_H
11 #define _SYSCALLS_H
12
13 #define SYS_EXIT        0       // Kill this thread
14 #define SYS_CLONE       1       // Create a new thread
15 #define SYS_KILL        2       // Send a signal
16 #define SYS_SETFAULTHANDLER     3       // Set signal Handler
17 #define SYS_YIELD       4       // Yield remainder of timestamp
18 #define SYS_SLEEP       5       // Sleep until messaged or signaled
19 #define SYS_TIMEDSLEEP  6       // Sleep until a specified time has elapsed
20 #define SYS_WAITEVENT   7       // Wait for an event
21 #define SYS_WAITTID     8       // Wait for a thread to do something
22 #define SYS_SETSIGNALHANDLER    9       // Set the POSIX signal handler
23 #define SYS_SETSIGNALMASK       10      // Sets the mask of disabled POSIX signals
24 #define SYS_SETNAME     11      // Sets the name of the current thread
25 #define SYS_GETNAME     12      // Gets the name of a thread
26 #define SYS_GETTID      13      // Get current thread ID
27 #define SYS_GETPID      14      // Get current thread group ID
28 #define SYS_SETPRI      15      // Set process priority
29 #define SYS_SENDMSG     16      // Send an IPC message
30 #define SYS_GETMSG      17      // Recieve an IPC message
31 #define SYS_GETTIME     18      // Get the current timestamp
32 #define SYS_SPAWN       19      // Spawn a new process
33 #define SYS_EXECVE      20      // Replace the current process
34 #define SYS_LOADBIN     21      // Load a binary into the current address space
35 #define SYS_UNLOADBIN   22      // Unload a loaded binary
36 #define SYS_LOADMOD     23      // Load a module into the kernel
37 #define SYS_GETPHYS     32      // Get the physical address of a page
38 #define SYS_MAP 33      // Map a physical address
39 #define SYS_ALLOCATE    34      // Allocate a page
40 #define SYS_UNMAP       35      // Unmap a page
41 #define SYS_PREALLOC    36      // Preallocate a page
42 #define SYS_SETFLAGS    37      // Set a page's flags
43 #define SYS_SHAREWITH   38      // Share a page with another thread
44 #define SYS_GETUID      39      // Get current User ID
45 #define SYS_GETGID      40      // Get current Group ID
46 #define SYS_SETUID      41      // Set current user ID
47 #define SYS_SETGID      42      // Set current Group ID
48 #define SYS_OPEN        64      // Open a file
49 #define SYS_REOPEN      65      // Close a file and reuse its handle
50 #define SYS_OPENCHILD   66      // Open a child entry in a directory
51 #define SYS_OPENPIPE    67      // Open a FIFO pipe pair
52 #define SYS_CLOSE       68      // Close a file
53 #define SYS_COPYFD      69      // Create a copy of a file handle
54 #define SYS_FDCTL       70      // Modify flags of a file descriptor
55 #define SYS_READ        71      // Read from an open file
56 #define SYS_READAT      72      // Read from an open file (with offset)
57 #define SYS_WRITE       73      // Write to an open file
58 #define SYS_WRITEAT     74      // Write to an open file (with offset)
59 #define SYS_TRUNCATE    75      // Change the size of an open file
60 #define SYS_IOCTL       76      // Perform an IOCtl Call
61 #define SYS_SEEK        77      // Seek to a new position in the file
62 #define SYS_READDIR     78      // Read from an open directory
63 #define SYS_GETACL      79      // Get an ACL Value
64 #define SYS_SETACL      80      // Set an ACL Value
65 #define SYS_FINFO       81      // Get file information
66 #define SYS_MKDIR       82      // Create a new directory
67 #define SYS_LINK        83      // Create a new link to a file
68 #define SYS_SYMLINK     84      // Create a symbolic link
69 #define SYS_UNLINK      85      // Delete a file
70 #define SYS_TELL        86      // Return the current file position
71 #define SYS_CHDIR       87      // Change current directory
72 #define SYS_GETCWD      88      // Get current directory
73 #define SYS_MOUNT       89      // Mount a filesystem
74 #define SYS_SELECT      90      // Wait for file handles
75 #define SYS_MMAP        91      // Map a file into this address space
76 #define SYS_MUNMAP      92      // Unmap a file
77 #define SYS_MARSHALFD   93      // Create a reference to a FD suitable for handing to another process
78 #define SYS_UNMARSHALFD 94      // Accept a marshaled FD
79
80 #define NUM_SYSCALLS    95
81 #define SYS_DEBUG       0x100
82 #define SYS_DEBUGHEX    0x101
83
84 #if !defined(__ASSEMBLER__) && !defined(NO_SYSCALL_STRS)
85 static const char *cSYSCALL_NAMES[] = {
86         "SYS_EXIT",
87         "SYS_CLONE",
88         "SYS_KILL",
89         "SYS_SETFAULTHANDLER",
90         "SYS_YIELD",
91         "SYS_SLEEP",
92         "SYS_TIMEDSLEEP",
93         "SYS_WAITEVENT",
94         "SYS_WAITTID",
95         "SYS_SETSIGNALHANDLER",
96         "SYS_SETSIGNALMASK",
97         "SYS_SETNAME",
98         "SYS_GETNAME",
99         "SYS_GETTID",
100         "SYS_GETPID",
101         "SYS_SETPRI",
102         "SYS_SENDMSG",
103         "SYS_GETMSG",
104         "SYS_GETTIME",
105         "SYS_SPAWN",
106         "SYS_EXECVE",
107         "SYS_LOADBIN",
108         "SYS_UNLOADBIN",
109         "SYS_LOADMOD",
110         "",
111         "",
112         "",
113         "",
114         "",
115         "",
116         "",
117         "",
118         "SYS_GETPHYS",
119         "SYS_MAP",
120         "SYS_ALLOCATE",
121         "SYS_UNMAP",
122         "SYS_PREALLOC",
123         "SYS_SETFLAGS",
124         "SYS_SHAREWITH",
125         "SYS_GETUID",
126         "SYS_GETGID",
127         "SYS_SETUID",
128         "SYS_SETGID",
129         "",
130         "",
131         "",
132         "",
133         "",
134         "",
135         "",
136         "",
137         "",
138         "",
139         "",
140         "",
141         "",
142         "",
143         "",
144         "",
145         "",
146         "",
147         "",
148         "",
149         "",
150         "SYS_OPEN",
151         "SYS_REOPEN",
152         "SYS_OPENCHILD",
153         "SYS_OPENPIPE",
154         "SYS_CLOSE",
155         "SYS_COPYFD",
156         "SYS_FDCTL",
157         "SYS_READ",
158         "SYS_READAT",
159         "SYS_WRITE",
160         "SYS_WRITEAT",
161         "SYS_TRUNCATE",
162         "SYS_IOCTL",
163         "SYS_SEEK",
164         "SYS_READDIR",
165         "SYS_GETACL",
166         "SYS_SETACL",
167         "SYS_FINFO",
168         "SYS_MKDIR",
169         "SYS_LINK",
170         "SYS_SYMLINK",
171         "SYS_UNLINK",
172         "SYS_TELL",
173         "SYS_CHDIR",
174         "SYS_GETCWD",
175         "SYS_MOUNT",
176         "SYS_SELECT",
177         "SYS_MMAP",
178         "SYS_MUNMAP",
179         "SYS_MARSHALFD",
180         "SYS_UNMARSHALFD",
181
182         ""
183 };
184 #endif
185
186 #endif

UCC git Repository :: git.ucc.asn.au