mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r2807] ./hdf5/src/H5Fistore.c
* 2000-11-07 Robb Matzke <matzke@llnl.gov> (H5F_istore_preempt) Returns error if call to H5F_istore_flush() failed.
This commit is contained in:
parent
88c57a3281
commit
564b68cecc
@ -1072,7 +1072,10 @@ H5F_istore_preempt (H5F_t *f, H5F_rdcc_ent_t *ent)
|
||||
assert(ent->idx>=0 && ent->idx<rdcc->nslots);
|
||||
|
||||
/* Flush */
|
||||
H5F_istore_flush_entry(f, ent, TRUE);
|
||||
if (H5F_istore_flush_entry(f, ent, TRUE)<0) {
|
||||
HRETURN_ERROR(H5E_IO, H5E_WRITEERROR, FAIL,
|
||||
"cannot flush indexed storage buffer");
|
||||
}
|
||||
|
||||
/* Unlink from list */
|
||||
if (ent->prev) {
|
||||
|
@ -1072,7 +1072,10 @@ H5F_istore_preempt (H5F_t *f, H5F_rdcc_ent_t *ent)
|
||||
assert(ent->idx>=0 && ent->idx<rdcc->nslots);
|
||||
|
||||
/* Flush */
|
||||
H5F_istore_flush_entry(f, ent, TRUE);
|
||||
if (H5F_istore_flush_entry(f, ent, TRUE)<0) {
|
||||
HRETURN_ERROR(H5E_IO, H5E_WRITEERROR, FAIL,
|
||||
"cannot flush indexed storage buffer");
|
||||
}
|
||||
|
||||
/* Unlink from list */
|
||||
if (ent->prev) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user