Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/trace/syscalls.c

    r8820544 r6c34f587  
    3838
    3939const sc_desc_t syscall_desc[] = {
    40     [SYS_KIO] ={ "kio",                                 3,      V_INT_ERRNO },
     40    [SYS_KLOG] ={ "klog",                               3,      V_INT_ERRNO },
    4141    [SYS_TLS_SET] = { "tls_set",                        1,      V_ERRNO },
    4242
     
    4646
    4747    [SYS_TASK_GET_ID] = { "task_get_id",                1,      V_ERRNO },
    48     [SYS_TASK_SET_NAME] = { "task_set_name",            2,      V_ERRNO },
    4948    [SYS_FUTEX_SLEEP] = { "futex_sleep_timeout",        3,      V_ERRNO },
    5049    [SYS_FUTEX_WAKEUP] = { "futex_wakeup",              1,      V_ERRNO },
     
    6564    [SYS_IPC_HANGUP] = { "ipc_hangup",                  1,      V_ERRNO },
    6665
    67     [SYS_IPC_EVENT_SUBSCRIBE] = { "ipc_event_subscribe",        2,      V_ERRNO },
    68     [SYS_IPC_EVENT_UNSUBSCRIBE] = { "ipc_event_unsubscribe",    1,      V_ERRNO },
    69     [SYS_IPC_EVENT_UNMASK] = { "ipc_event_unmask",      1,      V_ERRNO },
     66    [SYS_EVENT_SUBSCRIBE] = { "event_subscribe",        2,      V_ERRNO },
    7067
    7168    [SYS_CAP_GRANT] = { "cap_grant",                    2,      V_ERRNO },
     
    7370    [SYS_PHYSMEM_MAP] = { "physmem_map",                4,      V_ERRNO },
    7471    [SYS_IOSPACE_ENABLE] = { "iospace_enable",          1,      V_ERRNO },
    75 
    76     [SYS_IPC_IRQ_SUBSCRIBE] = { "ipc_irq_subscribe",    4,      V_ERRNO },
    77     [SYS_IPC_IRQ_UNSUBSCRIBE] = { "ipc_irq_unsubscribe",        2,      V_ERRNO },
     72    [SYS_IRQ_REGISTER] = { "irq_register",      4,      V_ERRNO },
     73    [SYS_IRQ_UNREGISTER] = { "irq_unregister",  2,      V_ERRNO },
    7874
    7975    [SYS_SYSINFO_GET_VAL_TYPE] = { "sysinfo_get_val_type",              2,      V_INTEGER },
     
    8278    [SYS_SYSINFO_GET_DATA] = { "sysinfo_get_data",              5,      V_ERRNO },
    8379
    84     [SYS_DEBUG_CONSOLE] = { "debug_console", 0, V_ERRNO },
     80    [SYS_DEBUG_ACTIVATE_CONSOLE] = { "debug_activate_console", 0,       V_ERRNO },
    8581    [SYS_IPC_CONNECT_KBOX] = { "ipc_connect_kbox",      1,      V_ERRNO }
    8682};
    8783
    88 const size_t syscall_desc_len = (sizeof(syscall_desc) / sizeof(sc_desc_t));
    89 
    9084/** @}
    9185 */
Note: See TracChangeset for help on using the changeset viewer.