summaryrefslogtreecommitdiffstats
path: root/src/H5FD.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-08-15 16:58:36 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-08-15 16:58:36 (GMT)
commit2147a97e4b13f16288a4c8e7cddbfede0b11cb73 (patch)
tree5b2fca368bcf763dbaafeaa07bb8594e234ed55a /src/H5FD.c
parentd33b9de7a7eb99137860d6402508d7db304c39d6 (diff)
downloadhdf5-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.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/H5FD.c b/src/H5FD.c
index aa1935c..0284d2d 100644
--- a/src/H5FD.c
+++ b/src/H5FD.c
@@ -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: