Changeset d3e7ff4 in mainline for generic/src/syscall/syscall.c
- Timestamp:
- 2006-03-14T14:10:25Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5581c45e
- Parents:
- 5be1923
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/syscall/syscall.c
r5be1923 rd3e7ff4 29 29 #include <syscall/syscall.h> 30 30 #include <proc/thread.h> 31 #include <mm/as.h> 31 32 #include <print.h> 32 33 #include <putchar.h> … … 182 183 } 183 184 185 static __native sys_mremap(void *address, size_t size, unsigned long flags) 186 { 187 return as_remap(AS, (__address) address, size, 0); 188 } 184 189 185 190 syshandler_t syscall_table[SYSCALL_END] = { 186 191 sys_ctl, 187 192 sys_io, 193 sys_mremap, 188 194 sys_ipc_call_sync, 189 195 sys_ipc_call_sync_medium,
Note:
See TracChangeset
for help on using the changeset viewer.