Changeset ea28272 in mainline for kernel/generic/src/syscall/syscall.c


Ignore:
Timestamp:
2010-12-30T13:43:27Z (15 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d770deb
Parents:
d70d80ed (diff), f418e51 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/syscall/syscall.c

    rd70d80ed rea28272  
    5656
    5757/** Dispatch system call */
    58 unative_t syscall_handler(unative_t a1, unative_t a2, unative_t a3,
    59     unative_t a4, unative_t a5, unative_t a6, unative_t id)
     58sysarg_t syscall_handler(sysarg_t a1, sysarg_t a2, sysarg_t a3,
     59    sysarg_t a4, sysarg_t a5, sysarg_t a6, sysarg_t id)
    6060{
    6161        /* Do userpace accounting */
     
    7474#endif
    7575       
    76         unative_t rc;
     76        sysarg_t rc;
    7777        if (id < SYSCALL_END) {
    7878                rc = syscall_table[id](a1, a2, a3, a4, a5, a6);
     
    120120        (syshandler_t) sys_task_get_id,
    121121        (syshandler_t) sys_task_set_name,
     122        (syshandler_t) sys_task_kill,
    122123        (syshandler_t) sys_program_spawn_loader,
    123124       
     
    147148        (syshandler_t) sys_ipc_register_irq,
    148149        (syshandler_t) sys_ipc_unregister_irq,
     150        (syshandler_t) sys_ipc_connect_kbox,
    149151       
    150152        /* Event notification syscalls. */
     
    169171        /* Debug calls */
    170172        (syshandler_t) sys_debug_enable_console,
    171         (syshandler_t) sys_debug_disable_console,
    172        
    173         (syshandler_t) sys_ipc_connect_kbox
     173        (syshandler_t) sys_debug_disable_console
    174174};
    175175
Note: See TracChangeset for help on using the changeset viewer.