Changeset 553492be in mainline for uspace/srv/vfs/vfs.h
- Timestamp:
- 2009-06-17T22:33:08Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ac47b7c2
- Parents:
- ca093b3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.h
rca093b3 r553492be 37 37 #include <adt/list.h> 38 38 #include <fibril_sync.h> 39 #include <futex.h>40 39 #include <sys/types.h> 41 40 #include <devmap.h> … … 146 145 } vfs_file_t; 147 146 148 extern f utex_t nodes_futex;147 extern fibril_mutex_t nodes_mutex; 149 148 150 149 extern link_t fs_head; /**< List of registered file systems. */ … … 159 158 } plb_entry_t; 160 159 161 extern f utex_t plb_futex; /**< Futex protecting plb and plb_head. */160 extern fibril_mutex_t plb_mutex;/**< Mutex protecting plb and plb_head. */ 162 161 extern uint8_t *plb; /**< Path Lookup Buffer */ 163 162 extern link_t plb_head; /**< List of active PLB entries. */
Note:
See TracChangeset
for help on using the changeset viewer.