Changeset cde485d in mainline for uspace/srv/fs/fat/fat.h


Ignore:
Timestamp:
2008-06-06T20:23:02Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b7b6753
Parents:
f49b0ea
Message:

Initialize global FAT IDX structures when the FAT server starts and initialize
per-file system FAT IDX structures when a file system gets mounted.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat.h

    rf49b0ea rcde485d  
    218218extern fs_reg_t fat_reg;
    219219
     220extern void fat_mounted(ipc_callid_t, ipc_call_t *);
     221extern void fat_mount(ipc_callid_t, ipc_call_t *);
    220222extern void fat_lookup(ipc_callid_t, ipc_call_t *);
    221223
    222224extern fat_idx_t *fat_idx_get_by_pos(dev_handle_t, fat_cluster_t, unsigned);
    223225extern fat_idx_t *fat_idx_get_by_index(dev_handle_t, fs_index_t);
     226
     227extern int fat_idx_init(void);
     228extern void fat_idx_fini(void);
     229extern int fat_idx_init_by_dev_handle(dev_handle_t);
     230extern void fat_idx_fini_by_dev_handle(dev_handle_t);
    224231
    225232#endif
Note: See TracChangeset for help on using the changeset viewer.