summaryrefslogtreecommitdiffstats
path: root/src/H5FDcore.c
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2002-09-30 21:51:05 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2002-09-30 21:51:05 (GMT)
commit8410a8536536ad6bdde5f09e643a9123df555460 (patch)
tree4684a484d6e75974dd83655f942d01524d5df719 /src/H5FDcore.c
parenta4bb3150b8c6847891129a7c6fe1d7551dd80d27 (diff)
downloadhdf5-8410a8536536ad6bdde5f09e643a9123df555460.zip
hdf5-8410a8536536ad6bdde5f09e643a9123df555460.tar.gz
hdf5-8410a8536536ad6bdde5f09e643a9123df555460.tar.bz2
[svn-r5954]
Purpose: a bug fix Description: When a file is opened for a second time, file close degree is supposed to be either the same as the first open, or default as the first open is also default. Platforms tested: Linux 2.2(eirene), Solaris 2.7(arabica), IRIX64 6.5(modi4)
Diffstat (limited to 'src/H5FDcore.c')
-rw-r--r--src/H5FDcore.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5FDcore.c b/src/H5FDcore.c
index cb36223..cea3834 100644
--- a/src/H5FDcore.c
+++ b/src/H5FDcore.c
@@ -85,6 +85,7 @@ static haddr_t H5FD_core_get_eoa(H5FD_t *_file);
static herr_t H5FD_core_set_eoa(H5FD_t *_file, haddr_t addr);
static haddr_t H5FD_core_get_eof(H5FD_t *_file);
static herr_t H5FD_core_get_handle(H5FD_t *_file, hid_t fapl, void** file_handle);
+static H5F_close_degree_t H5FD_core_get_fc_degree(H5FD_t *_file);
static herr_t H5FD_core_read(H5FD_t *_file, H5FD_mem_t type, hid_t fapl_id, haddr_t addr,
size_t size, void *buf);
static herr_t H5FD_core_write(H5FD_t *_file, H5FD_mem_t type, hid_t fapl_id, haddr_t addr,
@@ -652,7 +653,7 @@ H5FD_core_get_handle(H5FD_t *_file, hid_t UNUSED fapl, void** file_handle)
done:
FUNC_LEAVE(ret_value);
}
-
+
/*-------------------------------------------------------------------------
* Function: H5FD_core_read