Changeset 81b430a in mainline


Ignore:
Timestamp:
2009-05-27T19:10:09Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1e48aca1
Parents:
ad8fc510
Message:

More conversions to dev_handle_t.

Location:
uspace
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libblock/libblock.c

    rad8fc510 r81b430a  
    446446 */
    447447int
    448 block_read(int dev_handle, off_t *bufpos, size_t *buflen, off_t *pos, void *dst,
    449     size_t size, size_t block_size)
     448block_read(dev_handle_t dev_handle, off_t *bufpos, size_t *buflen, off_t *pos,
     449    void *dst, size_t size, size_t block_size)
    450450{
    451451        off_t offset = 0;
  • uspace/lib/libblock/libblock.h

    rad8fc510 r81b430a  
    9797extern void block_put(block_t *);
    9898
    99 extern int block_read(int, off_t *, size_t *, off_t *, void *, size_t, size_t);
     99extern int block_read(dev_handle_t, off_t *, size_t *, off_t *, void *, size_t,
     100    size_t);
    100101
    101102#endif
  • uspace/srv/fs/tmpfs/tmpfs_dump.c

    rad8fc510 r81b430a  
    5555
    5656static bool
    57 tmpfs_restore_recursion(int dev, off_t *bufpos, size_t *buflen, off_t *pos,
    58     fs_node_t *pfn)
     57tmpfs_restore_recursion(dev_handle_t dev, off_t *bufpos, size_t *buflen,
     58    off_t *pos, fs_node_t *pfn)
    5959{
    6060        struct rdentry entry;
Note: See TracChangeset for help on using the changeset viewer.