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