Changeset 81b430a in mainline
- Timestamp:
- 2009-05-27T19:10:09Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1e48aca1
- Parents:
- ad8fc510
- Location:
- uspace
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libblock/libblock.c
rad8fc510 r81b430a 446 446 */ 447 447 int 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)448 block_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) 450 450 { 451 451 off_t offset = 0; -
uspace/lib/libblock/libblock.h
rad8fc510 r81b430a 97 97 extern void block_put(block_t *); 98 98 99 extern int block_read(int, off_t *, size_t *, off_t *, void *, size_t, size_t); 99 extern int block_read(dev_handle_t, off_t *, size_t *, off_t *, void *, size_t, 100 size_t); 100 101 101 102 #endif -
uspace/srv/fs/tmpfs/tmpfs_dump.c
rad8fc510 r81b430a 55 55 56 56 static bool 57 tmpfs_restore_recursion( int dev, off_t *bufpos, size_t *buflen, off_t *pos,58 fs_node_t *pfn)57 tmpfs_restore_recursion(dev_handle_t dev, off_t *bufpos, size_t *buflen, 58 off_t *pos, fs_node_t *pfn) 59 59 { 60 60 struct rdentry entry;
Note:
See TracChangeset
for help on using the changeset viewer.