Rev 2071 | Rev 2120 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2071 | Rev 2089 | ||
---|---|---|---|
Line 69... | Line 69... | ||
69 | } syscall_t; |
69 | } syscall_t; |
70 | 70 | ||
71 | #ifdef KERNEL |
71 | #ifdef KERNEL |
72 | 72 | ||
73 | #include <arch/types.h> |
73 | #include <arch/types.h> |
74 | #include <typedefs.h> |
- | |
75 | 74 | ||
76 | typedef unative_t (*syshandler_t)(); |
75 | typedef unative_t (*syshandler_t)(); |
77 | 76 | ||
78 | extern syshandler_t syscall_table[SYSCALL_END]; |
77 | extern syshandler_t syscall_table[SYSCALL_END]; |
79 | extern unative_t syscall_handler(unative_t a1, unative_t a2, unative_t a3, |
78 | extern unative_t syscall_handler(unative_t a1, unative_t a2, unative_t a3, |