Add syscall_function type definition for the different syscall handlers, w/ E
This commit is contained in:
@@ -6,6 +6,11 @@
|
|||||||
|
|
||||||
static void syscall_handler (struct intr_frame *);
|
static void syscall_handler (struct intr_frame *);
|
||||||
|
|
||||||
|
/* A syscall_function is a function that receives up to 3 arguments, the
|
||||||
|
arguments to the functions are either ints or pointers taking up to 32 bits
|
||||||
|
in size. */
|
||||||
|
typedef uintptr_t syscall_function (uintptr_t, uintptr_t, uintptr_t);
|
||||||
|
|
||||||
void
|
void
|
||||||
syscall_init (void)
|
syscall_init (void)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user