diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-15 16:58:36 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-15 16:58:36 (GMT) |
commit | 2147a97e4b13f16288a4c8e7cddbfede0b11cb73 (patch) | |
tree | 5b2fca368bcf763dbaafeaa07bb8594e234ed55a /src/H5FD.c | |
parent | d33b9de7a7eb99137860d6402508d7db304c39d6 (diff) | |
download | hdf5-2147a97e4b13f16288a4c8e7cddbfede0b11cb73.zip hdf5-2147a97e4b13f16288a4c8e7cddbfede0b11cb73.tar.gz hdf5-2147a97e4b13f16288a4c8e7cddbfede0b11cb73.tar.bz2 |
[svn-r7372] Purpose:
Added some comments, etc.
Platforms tested:
FreeBSD 4.8 (sleipnir)
too trivial for h5committest
Diffstat (limited to 'src/H5FD.c')
-rw-r--r-- | src/H5FD.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -2084,9 +2084,9 @@ H5FD_free(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, hsize_t si #ifdef H5_HAVE_FPHDF5 /* - * When we're using the FPHDF5 driver, allocate from the SAP. If this + * When we're using the FPHDF5 driver, free with the SAP. If this * is the SAP executing this code, then skip the send to the SAP and - * try to do the actual allocations. + * try to do the actual free. */ if (H5FD_is_fphdf5_driver(file) && !H5FD_fphdf5_is_sap(file)) { unsigned req_id; @@ -2306,7 +2306,9 @@ H5FD_free(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, hsize_t si HGOTO_ERROR(H5E_VFL, H5E_CANTINIT, FAIL, "driver free request failed"); } else { /* leak memory */ +#ifdef H5F_DEBUG HDfprintf(stderr, "%s: LEAKED MEMORY!!!!!!\n", FUNC); +#endif /* H5F_DEBUG */ } done: |