hdf5/perform
Xuan Bai ea2dd2a44a [svn-r9844] Purpose:
Bug fix.

Description:
Function _flushall() is not available on Cygwin.  So a Cgywin macro is added so the compiler will not call this function when building HDF5 on Cygwin.

Solution:
Change the following codes:

#ifdef H5_HAVE_SYSTEM
#ifdefined WIN32
	_flushall();
#else
    HDsystem ("sync");
    HDsystem ("df >/dev/null");
#endif

to:

#ifdef H5_HAVE_SYSTEM
#if defined(WIN32) && ! defined(__CYGWIN__)
	_flushall();
#else
    HDsystem ("sync");
    HDsystem ("df >/dev/null");
#endif



Platforms tested:
Cygwin 1.5.11, VC 6.0 on XP.
Linux 2.4 (heping)
Solaris 2.7 (arabica)

Misc. update:
2005-01-20 15:46:33 -05:00
..
benchpar.c
chunk.c [svn-r9727] Purpose: 2004-12-29 09:26:20 -05:00
Dependencies [svn-r8983] Purpose: 2004-08-02 09:06:07 -05:00
gen_report.pl
iopipe.c [svn-r9844] Purpose: 2005-01-20 15:46:33 -05:00
Makefile.in [svn-r7629] Purpose: add a new performance program 2003-10-14 17:04:03 -05:00
mpi-perf.c
overhead.c [svn-r9727] Purpose: 2004-12-29 09:26:20 -05:00
perf_meta.c [svn-r9727] Purpose: 2004-12-29 09:26:20 -05:00
perf.c
pio_engine.c [svn-r9727] Purpose: 2004-12-29 09:26:20 -05:00
pio_perf.c [svn-r7091] Purpose: 2003-06-24 10:37:24 -05:00
pio_perf.h [svn-r7091] Purpose: 2003-06-24 10:37:24 -05:00
pio_timer.c
pio_timer.h
zip_perf.c [svn-r9727] Purpose: 2004-12-29 09:26:20 -05:00