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

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