if(H5F_block_read(file, H5FD_MEM_DRAW, dset_contig->sieve_loc, dset_contig->sieve_size, udata->dxpl_id, dset_contig->sieve_buf) < 0)
 
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright by The HDF Group.                                               *
 * Copyright by the Board of Trustees of the University of Illinois.         *
 * All rights reserved.                                                      *
 *                                                                           *
 * This file is part of HDF5.  The full HDF5 copyright notice, including     *
 * terms governing use, modification, and redistribution, is contained in    *
 * the COPYING file, which can be found at the root of the source code       *
 * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.  *
 * If you do not have access to either file, you may request a copy from     *
 * help@hdfgroup.org.                                                        *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 * Programmer:  Quincey Koziol <koziol@ncsa.uiuc.edu>
 *          Thursday, September 28, 2000
 *
 * Purpose:
 *      Contiguous dataset I/O functions. These routines are similar to
 *      the H5D_chunk_* routines and really only an abstract way of dealing
 *      with the data sieve buffer from H5F_seq_read/write.
 */
/****************/
/* Module Setup */
/****************/
#include "H5Dmodule.h"          /* This source code file is part of the H5D module */
/***********/
/* Headers */
/***********/
#include "H5private.h"      /* Generic Functions            */
#include "H5Dpkg.h"         /* Dataset functions            */
#include "H5Eprivate.h"     /* Error handling               */
#include "H5Fprivate.h"     /* Files                        */
#include "H5FDprivate.h"    /* File drivers                 */
#include "H5FLprivate.h"    /* Free Lists                   */
#include "H5Iprivate.h"     /* IDs                          */
#include "H5MFprivate.h"    /* File memory management       */
#include "H5FOprivate.h"    /* File objects                 */
#include "H5Oprivate.h"     /* Object headers               */
#include "H5Pprivate.h"     /* Property lists               */
#include "H5VMprivate.h"    /* Vector and array functions   */
/****************/
/* Local Macros */
/****************/