Changeset 903bac0a in mainline for uspace/srv/vfs/vfs.h
- Timestamp:
- 2011-08-19T09:00:38Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e2ab36f1
- Parents:
- d894fbd (diff), 42a619b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.h
rd894fbd r903bac0a 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 */ … … 180 180 extern void vfs_node_put(vfs_node_t *); 181 181 extern void vfs_node_forget(vfs_node_t *); 182 extern unsigned vfs_nodes_refcount_sum_get(fs_handle_t, devmap_handle_t);182 extern unsigned vfs_nodes_refcount_sum_get(fs_handle_t, service_id_t); 183 183 184 184
Note:
See TracChangeset
for help on using the changeset viewer.