Subversion Repositories HelenOS-historic

Rev

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

Rev 1176 Rev 1178
Line 35... Line 35...
35
#include <errno.h>
35
#include <errno.h>
36
#include <arch.h>
36
#include <arch.h>
37
#include <debug.h>
37
#include <debug.h>
38
#include <ipc/sysipc.h>
38
#include <ipc/sysipc.h>
39
#include <synch/futex.h>
39
#include <synch/futex.h>
-
 
40
#include <ddi/ddi.h>
40
 
41
 
41
static __native sys_io(int fd, const void * buf, size_t count) {
42
static __native sys_io(int fd, const void * buf, size_t count) {
42
   
43
   
43
    // TODO: buf sanity checks and a lot of other stuff ...
44
    // TODO: buf sanity checks and a lot of other stuff ...
44
 
45
 
Line 89... Line 90...
89
    sys_ipc_call_async,
90
    sys_ipc_call_async,
90
    sys_ipc_answer_fast,
91
    sys_ipc_answer_fast,
91
    sys_ipc_answer,
92
    sys_ipc_answer,
92
    sys_ipc_forward_fast,
93
    sys_ipc_forward_fast,
93
    sys_ipc_wait_for_call,
94
    sys_ipc_wait_for_call,
94
    sys_ipc_hangup
95
    sys_ipc_hangup,
-
 
96
    sys_map_physmem
95
};
97
};