diff options
author | Dan Wells <dwells@cs.uiuc.edu> | 2000-11-08 14:33:19 (GMT) |
---|---|---|
committer | Dan Wells <dwells@cs.uiuc.edu> | 2000-11-08 14:33:19 (GMT) |
commit | 7808e2adac098e16cc164fe5eb4c76129d7d8603 (patch) | |
tree | 8541f7a4ecea44a9db273867dd1b30aa71bef1ef | |
parent | 6ce3609c2e32d4bf4484cfe6af55d112d723308d (diff) | |
download | hdf5-7808e2adac098e16cc164fe5eb4c76129d7d8603.zip hdf5-7808e2adac098e16cc164fe5eb4c76129d7d8603.tar.gz hdf5-7808e2adac098e16cc164fe5eb4c76129d7d8603.tar.bz2 |
[svn-r2811]
Purpose:
Bug fix.
Description:
The names of some entries did not correspond with the names in the
FUNC_ENTER macro. This would cause inaccuracies during Pablo tracing.
Solution:
The names were changed in FUNC_ENTER to agree with the entry names.
Platforms tested:
Solaris, Irix, AIX, HP Vclass
-rw-r--r-- | src/H5FDfamily.c | 2 | ||||
-rw-r--r-- | src/H5FDlog.c | 2 | ||||
-rw-r--r-- | src/H5FDmpio.c | 2 | ||||
-rw-r--r-- | src/H5FDsec2.c | 2 | ||||
-rw-r--r-- | src/H5FDstream.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/H5FDfamily.c b/src/H5FDfamily.c index b9bc734..048c03b 100644 --- a/src/H5FDfamily.c +++ b/src/H5FDfamily.c @@ -172,7 +172,7 @@ H5Pset_fapl_family(hid_t fapl_id, hsize_t memb_size, hid_t memb_fapl_id) herr_t ret_value=FAIL; H5FD_family_fapl_t fa; - FUNC_ENTER(H5FD_set_fapl_family, FAIL); + FUNC_ENTER(H5Pset_fapl_family, FAIL); H5TRACE3("e","ihi",fapl_id,memb_size,memb_fapl_id); /* Check arguments */ diff --git a/src/H5FDlog.c b/src/H5FDlog.c index b55571d..cb9fe6f 100644 --- a/src/H5FDlog.c +++ b/src/H5FDlog.c @@ -263,7 +263,7 @@ H5Pset_fapl_log(hid_t fapl_id, char *logfile, int verbosity) H5FD_log_fapl_t fa; /* File access property list information */ herr_t ret_value=FAIL; - FUNC_ENTER(H5FD_set_fapl_log, FAIL); + FUNC_ENTER(H5Pset_fapl_log, FAIL); H5TRACE3("e","isIs",fapl_id,logfile,verbosity); if (H5P_FILE_ACCESS!=H5Pget_class(fapl_id)) diff --git a/src/H5FDmpio.c b/src/H5FDmpio.c index 2d85a23..6549694 100644 --- a/src/H5FDmpio.c +++ b/src/H5FDmpio.c @@ -235,7 +235,7 @@ H5Pset_fapl_mpio(hid_t fapl_id, MPI_Comm comm, MPI_Info info) herr_t ret_value=FAIL; H5FD_mpio_fapl_t fa; - FUNC_ENTER(H5FD_set_fapl_mpio, FAIL); + FUNC_ENTER(H5Pset_fapl_mpio, FAIL); H5TRACE3("e","iMcMi",fapl_id,comm,info); /* Check arguments */ diff --git a/src/H5FDsec2.c b/src/H5FDsec2.c index 150a995..348c855 100644 --- a/src/H5FDsec2.c +++ b/src/H5FDsec2.c @@ -220,7 +220,7 @@ H5Pset_fapl_sec2(hid_t fapl_id) { herr_t ret_value=FAIL; - FUNC_ENTER(H5FD_set_fapl_sec2, FAIL); + FUNC_ENTER(H5Pset_fapl_sec2, FAIL); H5TRACE1("e","i",fapl_id); if (H5P_FILE_ACCESS!=H5Pget_class(fapl_id)) diff --git a/src/H5FDstream.c b/src/H5FDstream.c index e27a21f..d31d802 100644 --- a/src/H5FDstream.c +++ b/src/H5FDstream.c @@ -250,7 +250,7 @@ herr_t H5Pset_fapl_stream (hid_t fapl_id, H5FD_stream_fapl_t *fapl) H5FD_stream_fapl_t user_fapl; - FUNC_ENTER (H5FD_set_fapl_stream, FAIL); + FUNC_ENTER (H5Pset_fapl_stream, FAIL); H5TRACE2 ("e", "ix", fapl_id, fapl); if (H5P_FILE_ACCESS != H5Pget_class (fapl_id)) |