diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-03-20 17:39:06 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-03-20 17:39:06 (GMT) |
commit | a90774e8cc0028b9935c6dfadb2a316337e4eea4 (patch) | |
tree | 2a922d79ef410a3f80e9cf4d905c29aaaf76f7c4 /src/H5FPprivate.h | |
parent | 9f7ef95fcd3eebe2f8edea204052c4f93776649b (diff) | |
download | hdf5-a90774e8cc0028b9935c6dfadb2a316337e4eea4.zip hdf5-a90774e8cc0028b9935c6dfadb2a316337e4eea4.tar.gz hdf5-a90774e8cc0028b9935c6dfadb2a316337e4eea4.tar.bz2 |
[svn-r6514] Purpose:
Bug fix and Update
Description:
From Quincey's comments on the code I checked in last night:
- In H5F_close call, the "private" processes should call the
H5F_flush with the "CLEAR_ONLY" flag.
- There's no need for a special case for FPHDF5 in the
FD_real_alloc function since FPHDF5 doesn't define an alloc
function.
- The return type of H5Pset_fapl_fphdf5 should be herr_t instead
of hid_t. I don't know how it got that way in the first place.
- The variable names for MPI types and the structure typedefs
should be switched: H5FP_request/H5FP_request_t to
H5FP_request_t/H5FP_request and so on.
- In the H5FP.c module, I was commiting the H5FP_request MPI
datatype but using the wrong offset field...
Platforms tested:
Linux...will test on others, but these are mostly FPHDF5 changes.
Misc. update:
Diffstat (limited to 'src/H5FPprivate.h')
-rw-r--r-- | src/H5FPprivate.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/H5FPprivate.h b/src/H5FPprivate.h index 0b08d45..101e3a7 100644 --- a/src/H5FPprivate.h +++ b/src/H5FPprivate.h @@ -183,9 +183,9 @@ typedef struct { hsize_t alignment; /* Alignment (really!) */ haddr_t addr; /* Address of the metadata */ unsigned char oid[H5R_OBJ_REF_BUF_SIZE]; /* Buffer to store OID of object */ -} H5FP_request; +} H5FP_request_t; -extern MPI_Datatype H5FP_request_t; /* MPI datatype for the H5FP_request obj*/ +extern MPI_Datatype H5FP_request; /* MPI datatype for the H5FP_request obj */ /*===----------------------------------------------------------------------=== * H5FP_reply @@ -198,9 +198,9 @@ typedef struct { unsigned file_id; /* File ID assigned to an open file */ H5FP_status_t status; /* Status of the request */ unsigned md_size; /* Size of the metadata sent in next msg */ -} H5FP_reply; +} H5FP_reply_t; -extern MPI_Datatype H5FP_reply_t; /* MPI datatype for the H5FP_reply obj */ +extern MPI_Datatype H5FP_reply; /* MPI datatype for the H5FP_reply obj */ /*===----------------------------------------------------------------------=== * H5FP_read @@ -215,9 +215,9 @@ typedef struct { H5FD_mem_t mem_type; /* Type of memory updated, if req'd */ unsigned md_size; /* Size of the metadata sent in next msg */ MPI_Offset addr; /* Address of the metadata */ -} H5FP_read; +} H5FP_read_t; -extern MPI_Datatype H5FP_read_t; /* MPI datatype for the H5FP_read obj */ +extern MPI_Datatype H5FP_read; /* MPI datatype for the H5FP_read obj */ /*===----------------------------------------------------------------------=== * H5FP_alloc @@ -231,9 +231,9 @@ typedef struct { H5FP_status_t status; /* Status of the request */ H5FD_mem_t mem_type; /* Type of memory updated, if req'd */ haddr_t addr; /* Address of the metadata */ -} H5FP_alloc; +} H5FP_alloc_t; -extern MPI_Datatype H5FP_alloc_t; /* MPI datatype for the H5FP_alloc obj */ +extern MPI_Datatype H5FP_alloc; /* MPI datatype for the H5FP_alloc obj */ /* Handy #define for copying OIDs */ #define H5FP_COPY_OID(dst, src) HDmemcpy((dst), (src), H5R_OBJ_REF_BUF_SIZE) |