Changeset 15f3c3f in mainline for uspace/srv/vfs/vfs.h
- Timestamp:
- 2011-06-22T22:00:52Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 86ffa27f
- Parents:
- ef09a7a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.h
ref09a7a r15f3c3f 38 38 #include <fibril_synch.h> 39 39 #include <sys/types.h> 40 #include < devmap.h>40 #include <loc.h> 41 41 #include <bool.h> 42 42 #include <ipc/vfs.h> … … 61 61 #define VFS_PAIR \ 62 62 fs_handle_t fs_handle; \ 63 devmap_handle_t devmap_handle;63 service_id_t service_id; 64 64 65 65 /** … … 67 67 * doesn't contain any state. For a stateful structure, see vfs_node_t. 68 68 * 69 * @note fs_handle, devmap_handleand index are meant to be returned in one69 * @note fs_handle, service_id and index are meant to be returned in one 70 70 * IPC reply. 71 71 */ … … 181 181 extern void vfs_node_put(vfs_node_t *); 182 182 extern void vfs_node_forget(vfs_node_t *); 183 extern unsigned vfs_nodes_refcount_sum_get(fs_handle_t, devmap_handle_t);183 extern unsigned vfs_nodes_refcount_sum_get(fs_handle_t, service_id_t); 184 184 185 185
Note:
See TracChangeset
for help on using the changeset viewer.