summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-06-09 19:18:47 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-06-09 19:18:47 (GMT)
commitdf5ca0fa1d78779cfdc23ace1919c6ff8828222d (patch)
tree6cab126644093f122511c248ceead1c9d6318d7b
parent3fcef502ea6188b243b1907d04e4cbe9d351bd8a (diff)
downloadhdf5-df5ca0fa1d78779cfdc23ace1919c6ff8828222d.zip
hdf5-df5ca0fa1d78779cfdc23ace1919c6ff8828222d.tar.gz
hdf5-df5ca0fa1d78779cfdc23ace1919c6ff8828222d.tar.bz2
[svn-r7002] Purpose:
Code cleanup Description: Clean up warnings about unused stuff... Platforms tested: FreeBSD 4.8 (sleipnir) h5committest
-rw-r--r--testpar/t_mdset.c11
-rw-r--r--testpar/t_ph5basic.c1
-rw-r--r--tools/h5diff/h5diff.c10
-rwxr-xr-xtools/h5import/h5import.c10
4 files changed, 18 insertions, 14 deletions
diff --git a/testpar/t_mdset.c b/testpar/t_mdset.c
index 9d32cb5..b8bf4b6 100644
--- a/testpar/t_mdset.c
+++ b/testpar/t_mdset.c
@@ -26,7 +26,7 @@ void write_dataset(hid_t, hid_t, hid_t);
int read_dataset(hid_t, hid_t, hid_t);
void create_group_recursive(hid_t, hid_t, hid_t, int);
void recursive_read_group(hid_t, hid_t, hid_t, int);
-void group_dataset_read(hid_t fid, int mpi_rank, int mpi_size, int m);
+void group_dataset_read(hid_t fid, int mpi_rank, int m);
void write_attribute(hid_t, int, int);
int read_attribute(hid_t, int, int);
int check_value(DATATYPE *, DATATYPE *);
@@ -295,12 +295,11 @@ void collective_group_write(char *filename, int ngroups)
*/
void independent_group_read(char *filename, int ngroups)
{
- int mpi_rank, mpi_size, m;
+ int mpi_rank, m;
hid_t plist, fid;
hbool_t use_gpfs = FALSE;
MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank);
- MPI_Comm_size(MPI_COMM_WORLD, &mpi_size);
plist = create_faccess_plist(MPI_COMM_WORLD, MPI_INFO_NULL, facc_type, use_gpfs);
fid = H5Fopen(filename, H5F_ACC_RDONLY, plist);
@@ -311,17 +310,17 @@ void independent_group_read(char *filename, int ngroups)
* from the beginning. */
if(mpi_rank%2==0) {
for(m=ngroups-1; m==0; m-=2)
- group_dataset_read(fid, mpi_rank, mpi_size, m);
+ group_dataset_read(fid, mpi_rank, m);
} else {
for(m=0; m<ngroups; m+=2)
- group_dataset_read(fid, mpi_rank, mpi_size, m);
+ group_dataset_read(fid, mpi_rank, m);
}
H5Fclose(fid);
}
/* Open and read datasets and compare data */
-void group_dataset_read(hid_t fid, int mpi_rank, int mpi_size, int m)
+void group_dataset_read(hid_t fid, int mpi_rank, int m)
{
int ret, i, j;
char gname[64], dname[32];
diff --git a/testpar/t_ph5basic.c b/testpar/t_ph5basic.c
index 206ac0b..eb0048b 100644
--- a/testpar/t_ph5basic.c
+++ b/testpar/t_ph5basic.c
@@ -221,7 +221,6 @@ test_fapl_mpiposix_dup(void)
hid_t acc_pl; /* File access properties */
hbool_t use_gpfs = FALSE;
herr_t ret; /* hdf5 return value */
- int nkeys, nkeys_tmp;
if (verbose)
printf("Verify fapl_mpiposix duplicates communicator object\n");
diff --git a/tools/h5diff/h5diff.c b/tools/h5diff/h5diff.c
index 984dce4..da6c649 100644
--- a/tools/h5diff/h5diff.c
+++ b/tools/h5diff/h5diff.c
@@ -77,7 +77,9 @@ static int array_diff( void *buf1, void *buf2, hsize_t tot_cnt, int rank, hsize_
*-------------------------------------------------------------------------
*/
+#ifdef NOT_YET
static void list( const char *filename, int nobjects, info_t *info );
+#endif /* NOT_YET */
static hid_t fixtype( hid_t f_type );
static int h5diff_can_diff( hid_t type_id );
static void print_datatype(hid_t type);
@@ -184,8 +186,8 @@ int main(int argc, const char *argv[])
options_t options = {0,0,0,0,0,0,0};
void *edata;
hid_t (*func)(void*);
- const char *file1_name;
- const char *file2_name;
+ const char *file1_name = NULL;
+ const char *file2_name = NULL;
const char *obj1_name = NULL;
const char *obj2_name = NULL;
int nfound=0, ret;
@@ -490,6 +492,7 @@ int check_f_input( const char *str )
*
*-------------------------------------------------------------------------
*/
+#ifdef NOT_YET
static
void list( const char *filename, int nobjects, info_t *info )
{
@@ -519,6 +522,7 @@ void list( const char *filename, int nobjects, info_t *info )
}
}
+#endif /* NOT_YET */
/*-------------------------------------------------------------------------
@@ -2778,6 +2782,7 @@ get_class(H5T_class_t tclass)
*
*-------------------------------------------------------------------------
*/
+#if defined (H5DIFF_DEBUG)
static
void print_sizes( const char *obj1, const char *obj2,
hid_t f_type1, hid_t f_type2,
@@ -2820,5 +2825,6 @@ void print_sizes( const char *obj1, const char *obj2,
printf("size on memory %u\n", m_size2 );
printf("\n");
}
+#endif /* H5DIFF_DEBUG */
diff --git a/tools/h5import/h5import.c b/tools/h5import/h5import.c
index 8046ddf..20dc785 100755
--- a/tools/h5import/h5import.c
+++ b/tools/h5import/h5import.c
@@ -28,7 +28,7 @@ int main(int argc, char *argv[])
int token;
int i;
int state = 0;
- struct Input *in;
+ struct Input *in=NULL;
const char *err1 = "Invalid number of arguments: %d.\n";
const char *err2 = "Error in state table.\n";
@@ -1851,7 +1851,7 @@ setDefaultValues(struct Input *in, int count)
hid_t
createOutputDataType(struct Input in)
{
- hid_t new_type;
+ hid_t new_type = (-1);
const char *err1 = "Invalid value for output class.\n";
switch (in.outputClass)
@@ -2093,7 +2093,7 @@ createOutputDataType(struct Input in)
hid_t
createInputDataType(struct Input in)
{
- hid_t new_type;
+ hid_t new_type = (-1);
const char *err1 = "Invalid value for input class.\n";
switch (in.inputClass)
@@ -2172,7 +2172,7 @@ process(struct Options *opt)
{
struct Input *in;
hid_t file_id, group_id, handle;
- hid_t dataset, dataspace;
+ hid_t dataset, dataspace = (-1);
FILE *strm, *extfile;
hid_t intype, outtype;
hid_t proplist;
@@ -2285,7 +2285,7 @@ process(struct Options *opt)
return (-1);
}
HDfclose(extfile);
- H5Pset_external (proplist, in->externFilename, 0, numOfElements * in->inputSize / 8);
+ H5Pset_external (proplist, in->externFilename, (off_t)0, numOfElements * in->inputSize / 8);
}
/* create dataspace */