Changes in uspace/srv/fs/tmpfs/tmpfs.h [852b801:ffa2c8ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs.h
r852b801 rffa2c8ef 29 29 /** @addtogroup fs 30 30 * @{ 31 */ 31 */ 32 32 33 33 #ifndef TMPFS_TMPFS_H_ 34 34 #define TMPFS_TMPFS_H_ 35 35 36 #include <ipc/ipc.h>37 36 #include <libfs.h> 38 37 #include <atomic.h> … … 40 39 #include <bool.h> 41 40 #include <adt/hash_table.h> 42 43 #ifndef dprintf44 #define dprintf(...) printf(__VA_ARGS__)45 #endif46 41 47 42 #define TMPFS_NODE(node) ((node) ? (tmpfs_node_t *)(node)->data : NULL) … … 66 61 fs_node_t *bp; /**< Back pointer to the FS node. */ 67 62 fs_index_t index; /**< TMPFS node index. */ 68 dev _handle_t dev_handle;/**< Device handle. */63 devmap_handle_t devmap_handle;/**< Device handle. */ 69 64 link_t nh_link; /**< Nodes hash table link. */ 70 65 tmpfs_dentry_type_t type; … … 83 78 extern void tmpfs_mounted(ipc_callid_t, ipc_call_t *); 84 79 extern void tmpfs_mount(ipc_callid_t, ipc_call_t *); 80 extern void tmpfs_unmounted(ipc_callid_t, ipc_call_t *); 81 extern void tmpfs_unmount(ipc_callid_t, ipc_call_t *); 85 82 extern void tmpfs_lookup(ipc_callid_t, ipc_call_t *); 86 83 extern void tmpfs_read(ipc_callid_t, ipc_call_t *); … … 93 90 extern void tmpfs_sync(ipc_callid_t, ipc_call_t *); 94 91 95 extern bool tmpfs_restore(dev _handle_t);92 extern bool tmpfs_restore(devmap_handle_t); 96 93 97 94 #endif
Note:
See TracChangeset
for help on using the changeset viewer.