Changeset 41811af in mainline for uspace/srv/vfs/vfs.h
- Timestamp:
- 2011-06-10T10:14:26Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ab547063
- Parents:
- 9536e6e (diff), 390d80d (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
r9536e6e r41811af 53 53 vfs_info_t vfs_info; 54 54 fs_handle_t fs_handle; 55 async_sess_t session;55 async_sess_t *sess; 56 56 } fs_info_t; 57 57 … … 167 167 extern fibril_rwlock_t namespace_rwlock; 168 168 169 extern int vfs_grab_phone(fs_handle_t);170 extern void vfs_ release_phone(fs_handle_t, int);169 extern async_exch_t *vfs_exchange_grab(fs_handle_t); 170 extern void vfs_exchange_release(async_exch_t *); 171 171 172 172 extern fs_handle_t fs_name_to_handle(char *, bool); … … 176 176 vfs_pair_t *, ...); 177 177 extern int vfs_open_node_internal(vfs_lookup_res_t *); 178 extern int vfs_close_internal(vfs_file_t *);179 178 180 179 extern bool vfs_nodes_init(void);
Note:
See TracChangeset
for help on using the changeset viewer.