Changes in uspace/app/trace/syscalls.c [c32b6f0:a3b339b4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/syscalls.c
rc32b6f0 ra3b339b4 38 38 39 39 const sc_desc_t syscall_desc[] = { 40 [SYS_KIO] ={ "kio", 3, V_INT_ERRNO }, 40 [SYS_KLOG] ={ "klog", 3, V_INT_ERRNO }, 41 [SYS_TLS_SET] = { "tls_set", 1, V_ERRNO }, 41 42 42 43 [SYS_THREAD_CREATE] = { "thread_create", 3, V_ERRNO }, … … 49 50 [SYS_FUTEX_WAKEUP] = { "futex_wakeup", 1, V_ERRNO }, 50 51 51 [SYS_AS_AREA_CREATE] = { "as_area_create", 5, V_ERRNO },52 [SYS_AS_AREA_CREATE] = { "as_area_create", 3, V_ERRNO }, 52 53 [SYS_AS_AREA_RESIZE] = { "as_area_resize", 3, V_ERRNO }, 53 54 [SYS_AS_AREA_DESTROY] = { "as_area_destroy", 1, V_ERRNO }, … … 64 65 [SYS_IPC_HANGUP] = { "ipc_hangup", 1, V_ERRNO }, 65 66 66 [SYS_IPC_EVENT_SUBSCRIBE] = { "ipc_event_subscribe", 2, V_ERRNO }, 67 [SYS_IPC_EVENT_UNSUBSCRIBE] = { "ipc_event_unsubscribe", 1, V_ERRNO }, 68 [SYS_IPC_EVENT_UNMASK] = { "ipc_event_unmask", 1, V_ERRNO }, 67 [SYS_EVENT_SUBSCRIBE] = { "event_subscribe", 2, V_ERRNO }, 69 68 70 69 [SYS_CAP_GRANT] = { "cap_grant", 2, V_ERRNO }, … … 72 71 [SYS_PHYSMEM_MAP] = { "physmem_map", 4, V_ERRNO }, 73 72 [SYS_IOSPACE_ENABLE] = { "iospace_enable", 1, V_ERRNO }, 74 75 [SYS_IPC_IRQ_SUBSCRIBE] = { "ipc_irq_subscribe", 4, V_ERRNO }, 76 [SYS_IPC_IRQ_UNSUBSCRIBE] = { "ipc_irq_unsubscribe", 2, V_ERRNO }, 73 [SYS_IRQ_REGISTER] = { "irq_register", 4, V_ERRNO }, 74 [SYS_IRQ_UNREGISTER] = { "irq_unregister", 2, V_ERRNO }, 77 75 78 76 [SYS_SYSINFO_GET_VAL_TYPE] = { "sysinfo_get_val_type", 2, V_INTEGER }, … … 81 79 [SYS_SYSINFO_GET_DATA] = { "sysinfo_get_data", 5, V_ERRNO }, 82 80 83 [SYS_DEBUG_ CONSOLE] = { "debug_console", 0, V_ERRNO },81 [SYS_DEBUG_ACTIVATE_CONSOLE] = { "debug_activate_console", 0, V_ERRNO }, 84 82 [SYS_IPC_CONNECT_KBOX] = { "ipc_connect_kbox", 1, V_ERRNO } 85 83 };
Note:
See TracChangeset
for help on using the changeset viewer.