Changes in uspace/lib/block/libblock.h [a6ba0c9:79ae36dd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/block/libblock.h
ra6ba0c9 r79ae36dd 2 2 * Copyright (c) 2008 Jakub Jermar 3 3 * Copyright (c) 2008 Martin Decky 4 * Copyright (c) 2011 Martin Sucha 4 5 * All rights reserved. 5 6 * … … 39 40 40 41 #include <stdint.h> 42 #include <async.h> 41 43 #include "../../srv/vfs/vfs.h" 42 44 #include <fibril_synch.h> … … 95 97 }; 96 98 97 extern int block_init( devmap_handle_t, size_t);99 extern int block_init(exch_mgmt_t, devmap_handle_t, size_t); 98 100 extern void block_fini(devmap_handle_t); 99 101 … … 113 115 extern int block_get_nblocks(devmap_handle_t, aoff64_t *); 114 116 extern int block_read_direct(devmap_handle_t, aoff64_t, size_t, void *); 117 extern int block_read_bytes_direct(devmap_handle_t, aoff64_t, size_t, void *); 115 118 extern int block_write_direct(devmap_handle_t, aoff64_t, size_t, const void *); 116 119
Note:
See TracChangeset
for help on using the changeset viewer.