Changeset cac458f in mainline for uspace/srv/vfs/vfs.h
- Timestamp:
- 2011-06-22T01:59:39Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 41e2118
- Parents:
- 79506d6 (diff), f1fae414 (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
-
TabularUnified uspace/srv/vfs/vfs.h ¶
r79506d6 rcac458f 145 145 extern fibril_mutex_t nodes_mutex; 146 146 147 extern fibril_condvar_t fs_ head_cv;148 extern fibril_mutex_t fs_ head_lock;149 extern li nk_t fs_head; /**< List of registered file systems. */147 extern fibril_condvar_t fs_list_cv; 148 extern fibril_mutex_t fs_list_lock; 149 extern list_t fs_list; /**< List of registered file systems. */ 150 150 151 151 extern vfs_pair_t rootfs; /**< Root file system. */ … … 158 158 } plb_entry_t; 159 159 160 extern fibril_mutex_t plb_mutex;/**< Mutex protecting plb and plb_ head. */160 extern fibril_mutex_t plb_mutex;/**< Mutex protecting plb and plb_entries. */ 161 161 extern uint8_t *plb; /**< Path Lookup Buffer */ 162 extern li nk_t plb_head;/**< List of active PLB entries. */162 extern list_t plb_entries; /**< List of active PLB entries. */ 163 163 164 164 #define MAX_MNTOPTS_LEN 256
Note:
See TracChangeset
for help on using the changeset viewer.