Changes in kernel/generic/src/syscall/syscall.c [5bcf1f9:79ae36dd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/syscall/syscall.c
r5bcf1f9 r79ae36dd 41 41 #include <proc/program.h> 42 42 #include <mm/as.h> 43 #include <mm/page.h> 43 44 #include <print.h> 44 45 #include <arch.h> … … 118 119 119 120 syshandler_t syscall_table[SYSCALL_END] = { 121 /* System management syscalls. */ 120 122 (syshandler_t) sys_klog, 121 123 (syshandler_t) sys_tls_set, … … 126 128 (syshandler_t) sys_thread_get_id, 127 129 (syshandler_t) sys_thread_usleep, 130 (syshandler_t) sys_thread_udelay, 128 131 129 132 (syshandler_t) sys_task_get_id, … … 143 146 (syshandler_t) sys_as_area_change_flags, 144 147 (syshandler_t) sys_as_area_destroy, 148 (syshandler_t) sys_as_get_unmapped_area, 149 150 /* Page mapping related syscalls. */ 151 (syshandler_t) sys_page_find_mapping, 145 152 146 153 /* IPC related syscalls. */ … … 160 167 /* Event notification syscalls. */ 161 168 (syshandler_t) sys_event_subscribe, 169 (syshandler_t) sys_event_unmask, 162 170 163 171 /* Capabilities related syscalls. */ … … 172 180 (syshandler_t) sys_unregister_irq, 173 181 174 /* Sysinfo syscalls */182 /* Sysinfo syscalls. */ 175 183 (syshandler_t) sys_sysinfo_get_tag, 176 184 (syshandler_t) sys_sysinfo_get_value,
Note:
See TracChangeset
for help on using the changeset viewer.