Changeset 45f04f8 in mainline for uspace/srv/fs/fat/fat.h


Ignore:
Timestamp:
2010-11-18T18:23:43Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3f0a7971, a7811f17, cb569e6
Parents:
51a268f (diff), c63e70c (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 changes that aim to do a better job in differentiating between
dev_handle_t and device_handle_t, respectively, by renaming these types to
devmap_handle_t and devman_handle_t, respectively.

File:
1 edited

Legend:

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

    r51a268f r45f04f8  
    176176
    177177        fibril_mutex_t  lock;
    178         dev_handle_t    dev_handle;
     178        devmap_handle_t devmap_handle;
    179179        fs_index_t      index;
    180180        /**
     
    242242extern void fat_sync(ipc_callid_t, ipc_call_t *);
    243243
    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);
     244extern int fat_idx_get_new(fat_idx_t **, devmap_handle_t);
     245extern fat_idx_t *fat_idx_get_by_pos(devmap_handle_t, fat_cluster_t, unsigned);
     246extern fat_idx_t *fat_idx_get_by_index(devmap_handle_t, fs_index_t);
    247247extern void fat_idx_destroy(fat_idx_t *);
    248248extern void fat_idx_hashin(fat_idx_t *);
     
    251251extern int fat_idx_init(void);
    252252extern 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);
     253extern int fat_idx_init_by_devmap_handle(devmap_handle_t);
     254extern void fat_idx_fini_by_devmap_handle(devmap_handle_t);
    255255
    256256#endif
Note: See TracChangeset for help on using the changeset viewer.