diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-01-06 22:36:42 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-01-06 22:36:42 (GMT) |
commit | 60316f893ad98c1faa45d3e319c506c7c3b247da (patch) | |
tree | 79ad2fe94c23624cdfc6a4c1b8b0aa060421199e /src/H5FP.c | |
parent | e9109df3f235a0a64e7204339a44ae24f2a607a3 (diff) | |
download | hdf5-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/H5FP.c')
-rw-r--r-- | src/H5FP.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -12,20 +12,20 @@ * access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ +/* Pablo mask */ +/* (Put before include files to avoid problems with inline functions) */ +#define PABLO_MASK H5FP_mask + /* Private header files */ #include "H5private.h" /* Generic Functions */ #include "H5Eprivate.h" /* Error Handling */ #include "H5MMprivate.h" /* Memory management */ #include "H5Oprivate.h" /* Object Headers */ -#include "H5TBprivate.h" /* Threaded, Balanced, Binary Trees */ #ifdef H5_HAVE_FPHDF5 #include "H5FPprivate.h" /* Flexible Parallel Functions */ -/* Pablo mask */ -#define PABLO_MASK H5FP_mask - MPI_Datatype H5FP_request; /* MPI datatype for the H5FP_request_t type */ MPI_Datatype H5FP_reply; /* MPI datatype for the H5FP_reply_t type */ MPI_Datatype H5FP_read; /* MPI datatype for the H5FP_read_t type */ |