Rev 1702 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1702 | Rev 1780 | ||
|---|---|---|---|
| Line 71... | Line 71... | ||
| 71 | #ifdef KERNEL |
71 | #ifdef KERNEL |
| 72 | 72 | ||
| 73 | #include <arch/types.h> |
73 | #include <arch/types.h> |
| 74 | #include <typedefs.h> |
74 | #include <typedefs.h> |
| 75 | 75 | ||
| 76 | typedef __native (*syshandler_t)(); |
76 | typedef unative_t (*syshandler_t)(); |
| 77 | 77 | ||
| 78 | extern syshandler_t syscall_table[SYSCALL_END]; |
78 | extern syshandler_t syscall_table[SYSCALL_END]; |
| 79 | extern __native syscall_handler(__native a1, __native a2, __native a3, |
79 | extern unative_t syscall_handler(unative_t a1, unative_t a2, unative_t a3, |
| 80 | __native a4, __native id); |
80 | unative_t a4, unative_t id); |
| 81 | extern __native sys_tls_set(__native addr); |
81 | extern unative_t sys_tls_set(unative_t addr); |
| 82 | 82 | ||
| 83 | 83 | ||
| 84 | #endif |
84 | #endif |
| 85 | 85 | ||
| 86 | #endif |
86 | #endif |