Changeset 1d2a1a9 in mainline for uspace/srv/fs/fat/fat.h


Ignore:
Timestamp:
2011-08-17T20:44:32Z (13 years ago)
Author:
Petr Koupy <petr.koupy@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0cc32f2
Parents:
bb285b4 (diff), c53a705 (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.
Message:

Merge libposix changes.

File:
1 edited

Legend:

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

    rbb285b4 r1d2a1a9  
    175175
    176176        fibril_mutex_t  lock;
    177         devmap_handle_t devmap_handle;
     177        service_id_t    service_id;
    178178        fs_index_t      index;
    179179        /**
     
    227227extern libfs_ops_t fat_libfs_ops;
    228228
    229 extern int fat_idx_get_new(fat_idx_t **, devmap_handle_t);
    230 extern fat_idx_t *fat_idx_get_by_pos(devmap_handle_t, fat_cluster_t, unsigned);
    231 extern fat_idx_t *fat_idx_get_by_index(devmap_handle_t, fs_index_t);
     229extern int fat_idx_get_new(fat_idx_t **, service_id_t);
     230extern fat_idx_t *fat_idx_get_by_pos(service_id_t, fat_cluster_t, unsigned);
     231extern fat_idx_t *fat_idx_get_by_index(service_id_t, fs_index_t);
    232232extern void fat_idx_destroy(fat_idx_t *);
    233233extern void fat_idx_hashin(fat_idx_t *);
     
    236236extern int fat_idx_init(void);
    237237extern void fat_idx_fini(void);
    238 extern int fat_idx_init_by_devmap_handle(devmap_handle_t);
    239 extern void fat_idx_fini_by_devmap_handle(devmap_handle_t);
     238extern int fat_idx_init_by_service_id(service_id_t);
     239extern void fat_idx_fini_by_service_id(service_id_t);
    240240
    241241#endif
Note: See TracChangeset for help on using the changeset viewer.