summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXuan Bai <xuanbai@hdfgroup.org>2005-01-20 20:55:05 (GMT)
committerXuan Bai <xuanbai@hdfgroup.org>2005-01-20 20:55:05 (GMT)
commitf7577add84805df952bc35b138718f7eeb296aaa (patch)
tree0588a33cf19eef22c321deb9e59fd2c6b7ef0fff
parentb12967a0847e14f425d34246a206f98c119402a6 (diff)
downloadhdf5-f7577add84805df952bc35b138718f7eeb296aaa.zip
hdf5-f7577add84805df952bc35b138718f7eeb296aaa.tar.gz
hdf5-f7577add84805df952bc35b138718f7eeb296aaa.tar.bz2
[svn-r9848] 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:
-rw-r--r--perform/iopipe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/perform/iopipe.c b/perform/iopipe.c
index 704637e..200ee7e 100644
--- a/perform/iopipe.c
+++ b/perform/iopipe.c
@@ -147,8 +147,8 @@ static void
synchronize (void)
{
#ifdef H5_HAVE_SYSTEM
-#ifdef WIN32
- flushall();
+#if defined(WIN32) && ! defined(__CYGWIN__)
+ _flushall();
#else
HDsystem ("sync");
HDsystem ("df >/dev/null");