Changes in uspace/srv/fs/fat/fat.h [ffa2c8ef:dba4a23] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat.h
rffa2c8ef rdba4a23 35 35 36 36 #include "fat_fat.h" 37 #include <ipc/ipc.h> 37 38 #include <fibril_synch.h> 38 39 #include <libfs.h> … … 175 176 176 177 fibril_mutex_t lock; 177 dev map_handle_t devmap_handle;178 dev_handle_t dev_handle; 178 179 fs_index_t index; 179 180 /** … … 241 242 extern void fat_sync(ipc_callid_t, ipc_call_t *); 242 243 243 extern int fat_idx_get_new(fat_idx_t **, dev map_handle_t);244 extern fat_idx_t *fat_idx_get_by_pos(dev map_handle_t, fat_cluster_t, unsigned);245 extern fat_idx_t *fat_idx_get_by_index(dev map_handle_t, fs_index_t);244 extern int fat_idx_get_new(fat_idx_t **, dev_handle_t); 245 extern fat_idx_t *fat_idx_get_by_pos(dev_handle_t, fat_cluster_t, unsigned); 246 extern fat_idx_t *fat_idx_get_by_index(dev_handle_t, fs_index_t); 246 247 extern void fat_idx_destroy(fat_idx_t *); 247 248 extern void fat_idx_hashin(fat_idx_t *); … … 250 251 extern int fat_idx_init(void); 251 252 extern void fat_idx_fini(void); 252 extern int fat_idx_init_by_dev map_handle(devmap_handle_t);253 extern void fat_idx_fini_by_dev map_handle(devmap_handle_t);253 extern int fat_idx_init_by_dev_handle(dev_handle_t); 254 extern void fat_idx_fini_by_dev_handle(dev_handle_t); 254 255 255 256 #endif
Note:
See TracChangeset
for help on using the changeset viewer.