summaryrefslogtreecommitdiffstats
path: root/src/H5P.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-06-17 16:38:43 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-06-17 16:38:43 (GMT)
commit15a916df4ba024d944c2e549fdff8165de3e36a3 (patch)
tree1167886df032fb301047fb4cc59766fb87788abc /src/H5P.c
parent2ae3f6b8669ce5dc19fe7e3d03eeb4728d8c9d1c (diff)
downloadhdf5-15a916df4ba024d944c2e549fdff8165de3e36a3.zip
hdf5-15a916df4ba024d944c2e549fdff8165de3e36a3.tar.gz
hdf5-15a916df4ba024d944c2e549fdff8165de3e36a3.tar.bz2
[svn-r5652] Purpose:
Code cleanup Description: Use dataset transfer property list to hold information about the MPI types for the current transfer, instead of setting pseudo-global variables in the file's struct. Platforms tested: Linux 2.2.x (eirene) w/parallel & IRIX64 6.5 (modi4) w/parallel & FORTRAN
Diffstat (limited to 'src/H5P.c')
-rw-r--r--src/H5P.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5P.c b/src/H5P.c
index 2e53233..5476089 100644
--- a/src/H5P.c
+++ b/src/H5P.c
@@ -5847,7 +5847,7 @@ done:
EXAMPLES
REVISION LOG
--------------------------------------------------------------------------*/
-static herr_t
+herr_t
H5P_insert(H5P_genplist_t *plist, const char *name, size_t size,
void *value, H5P_prp_set_func_t prp_set, H5P_prp_get_func_t prp_get,
H5P_prp_delete_func_t prp_delete, H5P_prp_copy_func_t prp_copy,
@@ -6185,7 +6185,7 @@ done:
EXAMPLES
REVISION LOG
--------------------------------------------------------------------------*/
-static htri_t
+htri_t
H5P_exist_plist(H5P_genplist_t *plist, const char *name)
{
htri_t ret_value=FAIL; /* return value */
@@ -7851,7 +7851,7 @@ done:
EXAMPLES
REVISION LOG
--------------------------------------------------------------------------*/
-static herr_t
+herr_t
H5P_remove(hid_t plist_id, H5P_genplist_t *plist, const char *name)
{
H5P_genprop_t *prop; /* Temporary property pointer */