diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-04-01 21:38:04 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-04-01 21:38:04 (GMT) |
commit | 243775d9cd13602067ce7f28a6088107428d94dc (patch) | |
tree | 90163f68c8731637d6b1e5071593961519517a43 /src/H5FPprivate.h | |
parent | 3a9829ac869c86d969fce769e0739b794220f0be (diff) | |
download | hdf5-243775d9cd13602067ce7f28a6088107428d94dc.zip hdf5-243775d9cd13602067ce7f28a6088107428d94dc.tar.gz hdf5-243775d9cd13602067ce7f28a6088107428d94dc.tar.bz2 |
[svn-r6556] Purpose:
Update & Bug Fix
Description:
The "free" protocol was missing. Added that to the server side.
When doing a "create" of a file (with no other data structures
created), the freespace in the file wasn't being reclaimed.
Solution:
After adding the free protocol, we put the burden of running through
the FD_free function on the SAP instead of each client.
Platforms tested:
Linux
Misc. update:
Diffstat (limited to 'src/H5FPprivate.h')
-rw-r--r-- | src/H5FPprivate.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/H5FPprivate.h b/src/H5FPprivate.h index ea36397..5ae04ca 100644 --- a/src/H5FPprivate.h +++ b/src/H5FPprivate.h @@ -157,6 +157,10 @@ typedef enum sap_status { /* Bad file ID */ H5FP_STATUS_BAD_FILE_ID, + /* Can't do memory things */ + H5FP_STATUS_CANT_ALLOC, + H5FP_STATUS_CANT_FREE, + /* Reserved for completely disasterous failures which require an abort */ H5FP_STATUS_CATASTROPHIC } H5FP_status_t; @@ -283,14 +287,11 @@ extern herr_t H5FP_request_flush_metadata(H5FD_t *file, unsigned file_id, H5FP_status_t *status); extern herr_t H5FP_request_close(H5FD_t *file, unsigned sap_file_id, unsigned *req_id, H5FP_status_t *status); - extern herr_t H5FP_request_allocate(H5FD_t *file, H5FD_mem_t mem_type, hsize_t size, haddr_t *addr, haddr_t *eoa, unsigned *req_id, H5FP_status_t *status); -extern herr_t H5FP_request_free(H5FD_t *file, H5FD_mem_t mem_type, - haddr_t addr, hsize_t size, - unsigned *req_id, H5FP_status_t *status); +extern herr_t H5FP_request_free(H5FD_t *file, unsigned *req_id, H5FP_status_t *status); /* NOTE: Don't use these functions outside of the H5FP* modules! */ extern herr_t H5FP_send_metadata(const char *mdata, int len, int to); |