Changeset 00aece0 in mainline for uspace/srv/vfs/vfs.h
- Timestamp:
- 2012-02-18T16:47:38Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4449c6c
- Parents:
- bd5f3b7 (diff), f943dd3 (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
rbd5f3b7 r00aece0 150 150 extern list_t fs_list; /**< List of registered file systems. */ 151 151 152 extern fibril_mutex_t fs_mntlist_lock; 153 extern list_t fs_mntlist; /**< List of mounted file systems. */ 154 152 155 extern vfs_pair_t rootfs; /**< Root file system. */ 153 156 … … 163 166 extern list_t plb_entries; /**< List of active PLB entries. */ 164 167 165 #define MAX_MNTOPTS_LEN 256166 167 168 /** Holding this rwlock prevents changes in file system namespace. */ 168 169 extern fibril_rwlock_t namespace_rwlock; … … 171 172 extern void vfs_exchange_release(async_exch_t *); 172 173 173 extern fs_handle_t fs_name_to_handle( char *, bool);174 extern fs_handle_t fs_name_to_handle(unsigned int instance, char *, bool); 174 175 extern vfs_info_t *fs_handle_to_info(fs_handle_t); 175 176 … … 219 220 extern void vfs_rename(ipc_callid_t, ipc_call_t *); 220 221 extern void vfs_wait_handle(ipc_callid_t, ipc_call_t *); 222 extern void vfs_get_mtab(ipc_callid_t, ipc_call_t *); 221 223 222 224 #endif
Note:
See TracChangeset
for help on using the changeset viewer.