Subversion Repositories HelenOS

Rev

Rev 4153 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4153 Rev 4263
Line 39... Line 39...
39
#include <proc/thread.h>
39
#include <proc/thread.h>
40
#include <proc/task.h>
40
#include <proc/task.h>
41
#include <proc/program.h>
41
#include <proc/program.h>
42
#include <mm/as.h>
42
#include <mm/as.h>
43
#include <print.h>
43
#include <print.h>
44
#include <putchar.h>
-
 
45
#include <arch.h>
44
#include <arch.h>
46
#include <debug.h>
45
#include <debug.h>
47
#include <ddi/device.h>
46
#include <ddi/device.h>
48
#include <ipc/sysipc.h>
47
#include <ipc/sysipc.h>
49
#include <synch/futex.h>
48
#include <synch/futex.h>
50
#include <synch/smc.h>
49
#include <synch/smc.h>
51
#include <ddi/ddi.h>
50
#include <ddi/ddi.h>
-
 
51
#include <ipc/event.h>
52
#include <security/cap.h>
52
#include <security/cap.h>
53
#include <sysinfo/sysinfo.h>
53
#include <sysinfo/sysinfo.h>
54
#include <console/console.h>
54
#include <console/console.h>
55
#include <udebug/udebug.h>
55
#include <udebug/udebug.h>
56
 
56
 
Line 124... Line 124...
124
    (syshandler_t) sys_ipc_forward_slow,
124
    (syshandler_t) sys_ipc_forward_slow,
125
    (syshandler_t) sys_ipc_wait_for_call,
125
    (syshandler_t) sys_ipc_wait_for_call,
126
    (syshandler_t) sys_ipc_hangup,
126
    (syshandler_t) sys_ipc_hangup,
127
    (syshandler_t) sys_ipc_register_irq,
127
    (syshandler_t) sys_ipc_register_irq,
128
    (syshandler_t) sys_ipc_unregister_irq,
128
    (syshandler_t) sys_ipc_unregister_irq,
-
 
129
 
-
 
130
    /* Event notification syscalls. */
-
 
131
    (syshandler_t) sys_event_subscribe,
129
   
132
   
130
    /* Capabilities related syscalls. */
133
    /* Capabilities related syscalls. */
131
    (syshandler_t) sys_cap_grant,
134
    (syshandler_t) sys_cap_grant,
132
    (syshandler_t) sys_cap_revoke,
135
    (syshandler_t) sys_cap_revoke,
133
   
136