Source
249
249
* Wednesday, May 7, 2003
250
250
*
251
251
* Modifications:
252
252
*
253
253
*-------------------------------------------------------------------------
254
254
*/
255
255
ssize_t
256
256
H5D_efl_readvv(const H5D_io_info_t *io_info,
257
257
size_t dset_max_nseq, size_t *dset_curr_seq, size_t dset_len_arr[], hsize_t dset_offset_arr[],
258
258
size_t mem_max_nseq, size_t *mem_curr_seq, size_t mem_len_arr[], hsize_t mem_offset_arr[],
259
-
void *_buf)
259
+
haddr_t UNUSED address, void UNUSED *pointer/*in*/, void *_buf)
260
260
{
261
261
const H5O_efl_t *efl=&(io_info->store->efl); /* Pointer to efl info */
262
262
unsigned char *buf; /* Pointer to buffer to write */
263
263
haddr_t addr; /* Actual address to read */
264
264
size_t total_size=0; /* Total size of sequence in bytes */
265
265
size_t size; /* Size of sequence in bytes */
266
266
size_t u; /* Counting variable */
267
267
size_t v; /* Counting variable */
268
268
ssize_t ret_value; /* Return value */
269
269
333
333
* Friday, May 2, 2003
334
334
*
335
335
* Modifications:
336
336
*
337
337
*-------------------------------------------------------------------------
338
338
*/
339
339
ssize_t
340
340
H5D_efl_writevv(const H5D_io_info_t *io_info,
341
341
size_t dset_max_nseq, size_t *dset_curr_seq, size_t dset_len_arr[], hsize_t dset_offset_arr[],
342
342
size_t mem_max_nseq, size_t *mem_curr_seq, size_t mem_len_arr[], hsize_t mem_offset_arr[],
343
-
const void *_buf)
343
+
haddr_t UNUSED address, void UNUSED *pointer/*in*/, const void *_buf)
344
344
{
345
345
const H5O_efl_t *efl=&(io_info->store->efl); /* Pointer to efl info */
346
346
const unsigned char *buf; /* Pointer to buffer to write */
347
347
haddr_t addr; /* Actual address to read */
348
348
size_t total_size=0; /* Total size of sequence in bytes */
349
349
size_t size; /* Size of sequence in bytes */
350
350
size_t u; /* Counting variable */
351
351
size_t v; /* Counting variable */
352
352
ssize_t ret_value; /* Return value */
353
353