summaryrefslogtreecommitdiffstats
path: root/src/H5FPclient.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-01-06 22:36:42 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-01-06 22:36:42 (GMT)
commit60316f893ad98c1faa45d3e319c506c7c3b247da (patch)
tree79ad2fe94c23624cdfc6a4c1b8b0aa060421199e /src/H5FPclient.c
parente9109df3f235a0a64e7204339a44ae24f2a607a3 (diff)
downloadhdf5-60316f893ad98c1faa45d3e319c506c7c3b247da.zip
hdf5-60316f893ad98c1faa45d3e319c506c7c3b247da.tar.gz
hdf5-60316f893ad98c1faa45d3e319c506c7c3b247da.tar.bz2
[svn-r9766] Purpose:
Code cleanup Description: Transition FPHDF5 to use skip lists for various internal data structures, instead of threaded, balanced binary trees. Also, simplify some of FPHDF5 code some, etc. Platforms tested: FreeBSD 4.10 (sleipnir) w/parallel & fphdf5 Too minor to require h5committest
Diffstat (limited to 'src/H5FPclient.c')
-rw-r--r--src/H5FPclient.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5FPclient.c b/src/H5FPclient.c
index 3db9995..b84466e 100644
--- a/src/H5FPclient.c
+++ b/src/H5FPclient.c
@@ -15,6 +15,10 @@
#define H5S_PACKAGE /*suppress error about including H5Spkg */
#define H5G_PACKAGE /*suppress error about including H5Gpkg */
+/* Pablo mask */
+/* (Put before include files to avoid problems with inline functions) */
+#define PABLO_MASK H5FP_client_mask
+
#include "H5private.h" /* Generic Functions */
#include "H5ACprivate.h" /* Metadata Cache */
#include "H5Dprivate.h" /* Dataset Functions */
@@ -27,16 +31,12 @@
#include "H5Oprivate.h" /* Object Headers */
#include "H5Rprivate.h" /* References */
#include "H5Spkg.h" /* Dataspace Functions */
-#include "H5TBprivate.h" /* Threaded, Balanced, Binary Trees */
#ifdef H5_HAVE_FPHDF5
#include "H5FDfphdf5.h" /* File Driver for FPHDF5 */
#include "H5FPprivate.h" /* Flexible Parallel Functions */
-/* Pablo mask */
-#define PABLO_MASK H5FPclient_mask
-
/* local functions */
static unsigned H5FP_gen_request_id(void);
static herr_t H5FP_dump_to_file(H5FD_t *file, hid_t dxpl_id);