[svn-r16537] Description:
Merge r16500:16536 from trunk into revise_chunks branch.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.6 (amazon) in debug mode
Mac OS X/32 10.5.6 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
This commit is contained in:
@@ -156,13 +156,22 @@ static void h5diff_print_char(char ch);
|
||||
* NaN detection
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#if H5_SIZEOF_LONG_DOUBLE !=0
|
||||
typedef enum dtype_t
|
||||
{
|
||||
FLT_FLOAT, FLT_DOUBLE,
|
||||
#if H5_SIZEOF_LONG_DOUBLE !=0
|
||||
FLT_LDOUBLE,
|
||||
#endif
|
||||
FLT_FLOAT,
|
||||
FLT_DOUBLE,
|
||||
FLT_LDOUBLE
|
||||
} dtype_t;
|
||||
#else
|
||||
|
||||
typedef enum dtype_t
|
||||
{
|
||||
FLT_FLOAT,
|
||||
FLT_DOUBLE
|
||||
} dtype_t;
|
||||
#endif
|
||||
|
||||
static int my_isnan(dtype_t type, void *val);
|
||||
|
||||
@@ -356,9 +365,9 @@ hsize_t diff_array( void *_mem1,
|
||||
* H5T_COMPOUND
|
||||
* Recursively call this function for each member
|
||||
* H5T_ARRAY
|
||||
* Recursively call this function for each element<EFBFBD>
|
||||
* Recursively call this function for each element
|
||||
* H5T_VLEN
|
||||
* Recursively call this function for each element<EFBFBD>
|
||||
* Recursively call this function for each element
|
||||
* H5T_STRING
|
||||
* compare byte by byte in a cycle from 0 to type_size. this type_size is the
|
||||
* value obtained by the get_size function but it is the string lenght for
|
||||
|
||||
Reference in New Issue
Block a user