Subversion Repositories HelenOS

Rev

Rev 3022 | Rev 4156 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3022 Rev 4055
1
/*
1
/*
2
 * Copyright (c) 2005 Martin Decky
2
 * Copyright (c) 2005 Martin Decky
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
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
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.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
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
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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
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.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup generic
29
/** @addtogroup generic
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
#ifndef KERN_SYSCALL_H_
35
#ifndef KERN_SYSCALL_H_
36
#define KERN_SYSCALL_H_
36
#define KERN_SYSCALL_H_
37
 
37
 
38
typedef enum {
38
typedef enum {
39
    SYS_IO = 0,
39
    SYS_KLOG = 0,
40
    SYS_TLS_SET = 1, /* Hardcoded in AMD64, IA32 uspace - fibril.S */
40
    SYS_TLS_SET = 1, /* Hardcoded in AMD64, IA32 uspace - fibril.S */
-
 
41
   
41
    SYS_THREAD_CREATE,
42
    SYS_THREAD_CREATE,
42
    SYS_THREAD_EXIT,
43
    SYS_THREAD_EXIT,
43
    SYS_THREAD_GET_ID,
44
    SYS_THREAD_GET_ID,
-
 
45
   
44
    SYS_TASK_GET_ID,
46
    SYS_TASK_GET_ID,
-
 
47
    SYS_TASK_SET_NAME,
-
 
48
    SYS_PROGRAM_SPAWN_LOADER,
-
 
49
   
45
    SYS_FUTEX_SLEEP,
50
    SYS_FUTEX_SLEEP,
46
    SYS_FUTEX_WAKEUP,
51
    SYS_FUTEX_WAKEUP,
-
 
52
    SYS_SMC_COHERENCE,
-
 
53
   
47
    SYS_AS_AREA_CREATE,
54
    SYS_AS_AREA_CREATE,
48
    SYS_AS_AREA_RESIZE,
55
    SYS_AS_AREA_RESIZE,
-
 
56
    SYS_AS_AREA_CHANGE_FLAGS,
49
    SYS_AS_AREA_DESTROY,
57
    SYS_AS_AREA_DESTROY,
-
 
58
   
50
    SYS_IPC_CALL_SYNC_FAST,
59
    SYS_IPC_CALL_SYNC_FAST,
51
    SYS_IPC_CALL_SYNC_SLOW,
60
    SYS_IPC_CALL_SYNC_SLOW,
52
    SYS_IPC_CALL_ASYNC_FAST,
61
    SYS_IPC_CALL_ASYNC_FAST,
53
    SYS_IPC_CALL_ASYNC_SLOW,
62
    SYS_IPC_CALL_ASYNC_SLOW,
54
    SYS_IPC_ANSWER_FAST,
63
    SYS_IPC_ANSWER_FAST,
55
    SYS_IPC_ANSWER_SLOW,
64
    SYS_IPC_ANSWER_SLOW,
56
    SYS_IPC_FORWARD_FAST,
65
    SYS_IPC_FORWARD_FAST,
-
 
66
    SYS_IPC_FORWARD_SLOW,
57
    SYS_IPC_WAIT,
67
    SYS_IPC_WAIT,
58
    SYS_IPC_HANGUP,
68
    SYS_IPC_HANGUP,
59
    SYS_IPC_REGISTER_IRQ,
69
    SYS_IPC_REGISTER_IRQ,
60
    SYS_IPC_UNREGISTER_IRQ,
70
    SYS_IPC_UNREGISTER_IRQ,
-
 
71
   
61
    SYS_CAP_GRANT,
72
    SYS_CAP_GRANT,
62
    SYS_CAP_REVOKE,
73
    SYS_CAP_REVOKE,
-
 
74
   
63
    SYS_PHYSMEM_MAP,
75
    SYS_PHYSMEM_MAP,
64
    SYS_IOSPACE_ENABLE,
76
    SYS_IOSPACE_ENABLE,
65
    SYS_PREEMPT_CONTROL,
77
    SYS_PREEMPT_CONTROL,
-
 
78
   
66
    SYS_SYSINFO_VALID,
79
    SYS_SYSINFO_VALID,
67
    SYS_SYSINFO_VALUE,
80
    SYS_SYSINFO_VALUE,
-
 
81
   
68
    SYS_DEBUG_ENABLE_CONSOLE,
82
    SYS_DEBUG_ENABLE_CONSOLE,
-
 
83
    SYS_DEBUG_DISABLE_CONSOLE,
-
 
84
    SYS_IPC_CONNECT_KBOX,
69
    SYSCALL_END
85
    SYSCALL_END
70
} syscall_t;
86
} syscall_t;
71
 
87
 
72
#ifdef KERNEL
88
#ifdef KERNEL
73
 
89
 
74
#include <arch/types.h>
90
#include <arch/types.h>
75
 
91
 
76
typedef unative_t (*syshandler_t)(unative_t, unative_t, unative_t, unative_t,
92
typedef unative_t (*syshandler_t)(unative_t, unative_t, unative_t, unative_t,
77
    unative_t, unative_t);
93
    unative_t, unative_t);
78
 
94
 
79
extern syshandler_t syscall_table[SYSCALL_END];
95
extern syshandler_t syscall_table[SYSCALL_END];
80
extern unative_t syscall_handler(unative_t, unative_t, unative_t, unative_t,
96
extern unative_t syscall_handler(unative_t, unative_t, unative_t, unative_t,
81
    unative_t, unative_t, unative_t);
97
    unative_t, unative_t, unative_t);
82
extern unative_t sys_tls_set(unative_t);
98
extern unative_t sys_tls_set(unative_t);
83
 
99
 
84
#endif
100
#endif
85
 
101
 
86
#endif
102
#endif
87
 
103
 
88
/** @}
104
/** @}
89
 */
105
 */
90
 
106