Changeset c03ee1c in mainline for kernel/generic
- Timestamp:
- 2007-06-13T17:49:57Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- de7663f
- Parents:
- 6b781c0
- Location:
- kernel/generic/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/mm/backend_elf.c
r6b781c0 rc03ee1c 327 327 btree_insert(&area->sh_info->pagemap, 328 328 (base + j * PAGE_SIZE) - area->base, 329 329 (void *) PTE_GET_FRAME(pte), NULL); 330 330 page_table_unlock(area->as, false); 331 331 -
kernel/generic/src/syscall/syscall.c
r6b781c0 rc03ee1c 93 93 94 94 /** Dispatch system call */ 95 unative_t syscall_handler(unative_t a1, unative_t a2, unative_t a3, 96 unative_t a4,unative_t id)95 unative_t syscall_handler(unative_t a1, unative_t a2, unative_t a3, unative_t a4, 96 unative_t id) 97 97 { 98 98 unative_t rc; … … 101 101 rc = syscall_table[id](a1, a2, a3, a4); 102 102 else { 103 klog_printf("TASK %llu: Unknown syscall id %d",TASK->taskid,id); 103 klog_printf("TASK %llu: Unknown syscall id %d", TASK->taskid, 104 id); 104 105 task_kill(TASK->taskid); 105 106 thread_exit();
Note:
See TracChangeset
for help on using the changeset viewer.