Changeset c98e6ee in mainline for kernel/generic/src/syscall/syscall.c
- Timestamp:
- 2008-07-08T16:05:45Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f93f168
- Parents:
- b7f9087
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/syscall/syscall.c
rb7f9087 rc98e6ee 39 39 #include <proc/thread.h> 40 40 #include <proc/task.h> 41 #include <proc/program.h> 41 42 #include <mm/as.h> 42 43 #include <print.h> … … 47 48 #include <ipc/sysipc.h> 48 49 #include <synch/futex.h> 50 #include <synch/smc.h> 49 51 #include <ddi/ddi.h> 50 52 #include <security/cap.h> … … 124 126 125 127 (syshandler_t) sys_task_get_id, 126 (syshandler_t) sys_ task_spawn,128 (syshandler_t) sys_program_spawn_loader, 127 129 128 130 /* Synchronization related syscalls. */ 129 131 (syshandler_t) sys_futex_sleep_timeout, 130 132 (syshandler_t) sys_futex_wakeup, 133 (syshandler_t) sys_smc_coherence, 131 134 132 135 /* Address space related syscalls. */ 133 136 (syshandler_t) sys_as_area_create, 134 137 (syshandler_t) sys_as_area_resize, 138 (syshandler_t) sys_as_area_change_flags, 135 139 (syshandler_t) sys_as_area_destroy, 136 140
Note:
See TracChangeset
for help on using the changeset viewer.