source: mainline/uspace/app/trace/syscalls.c@ 220210c8

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 220210c8 was a3b339b4, checked in by Martin Sucha <sucha14@…>, 12 years ago

Fix /app/trace

  • Property mode set to 100644
File size: 3.7 KB
RevLine 
[9a1b20c]1/*
2 * Copyright (c) 2008 Jiri Svoboda
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup trace
30 * @{
31 */
32/** @file
33 */
34
[c0699467]35#include <abi/syscall.h>
[9a1b20c]36#include "syscalls.h"
[f7176b1]37#include "trace.h"
[9a1b20c]38
39const sc_desc_t syscall_desc[] = {
[f7176b1]40 [SYS_KLOG] ={ "klog", 3, V_INT_ERRNO },
41 [SYS_TLS_SET] = { "tls_set", 1, V_ERRNO },
[79ae36dd]42
[f7176b1]43 [SYS_THREAD_CREATE] = { "thread_create", 3, V_ERRNO },
44 [SYS_THREAD_EXIT] = { "thread_exit", 1, V_ERRNO },
45 [SYS_THREAD_GET_ID] = { "thread_get_id", 1, V_ERRNO },
[9a1b20c]46
[f7176b1]47 [SYS_TASK_GET_ID] = { "task_get_id", 1, V_ERRNO },
[a3b339b4]48 [SYS_TASK_SET_NAME] = { "task_set_name", 2, V_ERRNO },
[f7176b1]49 [SYS_FUTEX_SLEEP] = { "futex_sleep_timeout", 3, V_ERRNO },
50 [SYS_FUTEX_WAKEUP] = { "futex_wakeup", 1, V_ERRNO },
[9a1b20c]51
[f7176b1]52 [SYS_AS_AREA_CREATE] = { "as_area_create", 3, V_ERRNO },
53 [SYS_AS_AREA_RESIZE] = { "as_area_resize", 3, V_ERRNO },
54 [SYS_AS_AREA_DESTROY] = { "as_area_destroy", 1, V_ERRNO },
[9a1b20c]55
[f7176b1]56 [SYS_IPC_CALL_ASYNC_FAST] = { "ipc_call_async_fast", 6, V_HASH },
57 [SYS_IPC_CALL_ASYNC_SLOW] = { "ipc_call_async_slow", 2, V_HASH },
[9a1b20c]58
[f7176b1]59 [SYS_IPC_ANSWER_FAST] = { "ipc_answer_fast", 6, V_ERRNO },
60 [SYS_IPC_ANSWER_SLOW] = { "ipc_answer_slow", 2, V_ERRNO },
61 [SYS_IPC_FORWARD_FAST] = { "ipc_forward_fast", 6, V_ERRNO },
[48daf64]62 [SYS_IPC_FORWARD_SLOW] = { "ipc_forward_slow", 3, V_ERRNO },
[f7176b1]63 [SYS_IPC_WAIT] = { "ipc_wait_for_call", 3, V_HASH },
[207e208e]64 [SYS_IPC_POKE] = { "ipc_poke", 0, V_ERRNO },
[f7176b1]65 [SYS_IPC_HANGUP] = { "ipc_hangup", 1, V_ERRNO },
[9a1b20c]66
[05641a9e]67 [SYS_EVENT_SUBSCRIBE] = { "event_subscribe", 2, V_ERRNO },
68
[f7176b1]69 [SYS_CAP_GRANT] = { "cap_grant", 2, V_ERRNO },
70 [SYS_CAP_REVOKE] = { "cap_revoke", 2, V_ERRNO },
71 [SYS_PHYSMEM_MAP] = { "physmem_map", 4, V_ERRNO },
72 [SYS_IOSPACE_ENABLE] = { "iospace_enable", 1, V_ERRNO },
[f044e96]73 [SYS_IRQ_REGISTER] = { "irq_register", 4, V_ERRNO },
74 [SYS_IRQ_UNREGISTER] = { "irq_unregister", 2, V_ERRNO },
[9a1b20c]75
[9a426d1f]76 [SYS_SYSINFO_GET_VAL_TYPE] = { "sysinfo_get_val_type", 2, V_INTEGER },
[d9fae235]77 [SYS_SYSINFO_GET_VALUE] = { "sysinfo_get_value", 3, V_ERRNO },
78 [SYS_SYSINFO_GET_DATA_SIZE] = { "sysinfo_get_data_size", 3, V_ERRNO },
[311bc25]79 [SYS_SYSINFO_GET_DATA] = { "sysinfo_get_data", 5, V_ERRNO },
[d9fae235]80
[b366a6f4]81 [SYS_DEBUG_ACTIVATE_CONSOLE] = { "debug_activate_console", 0, V_ERRNO },
[f7176b1]82 [SYS_IPC_CONNECT_KBOX] = { "ipc_connect_kbox", 1, V_ERRNO }
[9a1b20c]83};
84
[a3b339b4]85const size_t syscall_desc_len = (sizeof(syscall_desc) / sizeof(sc_desc_t));
86
[9a1b20c]87/** @}
88 */
Note: See TracBrowser for help on using the repository browser.