mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r9905] Purpose:
fix bugs. Description: The three variables, g_nTasks, outBuff, and outBuffOffset, were declared in ph5diff.h. That means they are declared in various *.c files that include it, thus having the appearance of multiple defined. Most C compilers are forgiving of this error but the g++ rejects this practice. Solution: Make it only an extern declaration in ph5diff.h but really defined them in h5diff_util.c Platforms tested: sleipnir using g++ since this only failed in Daily test. Also testes in heping, serial and parallel modes.
This commit is contained in:
parent
7e28ae7b47
commit
1db4cc2596
@ -16,6 +16,10 @@
|
||||
#include "ph5diff.h"
|
||||
#include "H5private.h"
|
||||
|
||||
/* global variables */
|
||||
int g_nTasks;
|
||||
char outBuff[OUTBUFF_SIZE];
|
||||
unsigned int outBuffOffset;
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: parallel_print
|
||||
|
@ -30,9 +30,9 @@
|
||||
#define MPI_TAG_END 6
|
||||
#define MPI_TAG_PARALLEL 7
|
||||
|
||||
int g_nTasks;
|
||||
char outBuff[OUTBUFF_SIZE];
|
||||
unsigned int outBuffOffset;
|
||||
extern int g_nTasks;
|
||||
extern char outBuff[OUTBUFF_SIZE];
|
||||
extern unsigned int outBuffOffset;
|
||||
|
||||
struct diff_args
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user