Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/devfs/devfs_ops.h

    refcebe1 rffa2c8ef  
    3434#define DEVFS_DEVFS_OPS_H_
    3535
     36#include <ipc/common.h>
    3637#include <bool.h>
    3738
    3839extern bool devfs_init(void);
     40
     41extern void devfs_mounted(ipc_callid_t, ipc_call_t *);
     42extern void devfs_mount(ipc_callid_t, ipc_call_t *);
     43extern void devfs_unmounted(ipc_callid_t, ipc_call_t *);
     44extern void devfs_unmount(ipc_callid_t, ipc_call_t *);
     45extern void devfs_lookup(ipc_callid_t, ipc_call_t *);
     46extern void devfs_open_node(ipc_callid_t, ipc_call_t *);
     47extern void devfs_stat(ipc_callid_t, ipc_call_t *);
     48extern void devfs_sync(ipc_callid_t, ipc_call_t *);
     49extern void devfs_read(ipc_callid_t, ipc_call_t *);
     50extern void devfs_write(ipc_callid_t, ipc_call_t *);
     51extern void devfs_truncate(ipc_callid_t, ipc_call_t *);
     52extern void devfs_close(ipc_callid_t, ipc_call_t *);
     53extern void devfs_destroy(ipc_callid_t, ipc_call_t *);
    3954
    4055#endif
Note: See TracChangeset for help on using the changeset viewer.