Subversion Repositories HelenOS

Rev

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

Rev 4420 Rev 4537
Line 26... Line 26...
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 fs
29
/** @addtogroup fs
30
 * @{
30
 * @{
31
 */
31
 */
32
 
32
 
33
#ifndef DEVFS_DEVFS_OPS_H_
33
#ifndef DEVFS_DEVFS_OPS_H_
34
#define DEVFS_DEVFS_OPS_H_
34
#define DEVFS_DEVFS_OPS_H_
35
 
35
 
36
#include <ipc/ipc.h>
36
#include <ipc/ipc.h>
Line 39... Line 39...
39
extern bool devfs_init(void);
39
extern bool devfs_init(void);
40
 
40
 
41
extern void devfs_mounted(ipc_callid_t, ipc_call_t *);
41
extern void devfs_mounted(ipc_callid_t, ipc_call_t *);
42
extern void devfs_mount(ipc_callid_t, ipc_call_t *);
42
extern void devfs_mount(ipc_callid_t, ipc_call_t *);
43
extern void devfs_lookup(ipc_callid_t, ipc_call_t *);
43
extern void devfs_lookup(ipc_callid_t, ipc_call_t *);
-
 
44
extern void devfs_open_node(ipc_callid_t, ipc_call_t *);
-
 
45
extern void devfs_device(ipc_callid_t, ipc_call_t *);
-
 
46
extern void devfs_sync(ipc_callid_t, ipc_call_t *);
44
extern void devfs_read(ipc_callid_t, ipc_call_t *);
47
extern void devfs_read(ipc_callid_t, ipc_call_t *);
45
extern void devfs_write(ipc_callid_t, ipc_call_t *);
48
extern void devfs_write(ipc_callid_t, ipc_call_t *);
46
extern void devfs_truncate(ipc_callid_t, ipc_call_t *);
49
extern void devfs_truncate(ipc_callid_t, ipc_call_t *);
-
 
50
extern void devfs_close(ipc_callid_t, ipc_call_t *);
47
extern void devfs_destroy(ipc_callid_t, ipc_call_t *);
51
extern void devfs_destroy(ipc_callid_t, ipc_call_t *);
48
 
52
 
49
#endif
53
#endif
50
 
54
 
51
/**
55
/**