Changes in uspace/srv/vfs/vfs.h [76a67ce:e2ab36f1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.h
r76a67ce re2ab36f1 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 155 152 extern vfs_pair_t rootfs; /**< Root file system. */ 156 153 … … 166 163 extern list_t plb_entries; /**< List of active PLB entries. */ 167 164 165 #define MAX_MNTOPTS_LEN 256 166 168 167 /** Holding this rwlock prevents changes in file system namespace. */ 169 168 extern fibril_rwlock_t namespace_rwlock; … … 172 171 extern void vfs_exchange_release(async_exch_t *); 173 172 174 extern fs_handle_t fs_name_to_handle( unsigned int instance,char *, bool);173 extern fs_handle_t fs_name_to_handle(char *, bool); 175 174 extern vfs_info_t *fs_handle_to_info(fs_handle_t); 176 175 … … 220 219 extern void vfs_rename(ipc_callid_t, ipc_call_t *); 221 220 extern void vfs_wait_handle(ipc_callid_t, ipc_call_t *); 222 extern void vfs_get_mtab(ipc_callid_t, ipc_call_t *);223 221 224 222 #endif
Note:
See TracChangeset
for help on using the changeset viewer.