From: Derrick Brashear Date: Mon, 10 Sep 2007 22:59:14 +0000 (+0000) Subject: DEVEL15-namei-fsync-less-20070910 X-Git-Tag: openafs-devel-1_5_25~22 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=974b0875bd17589f22804b49f22364ee4af44817;p=packages%2Fo%2Fopenafs.git DEVEL15-namei-fsync-less-20070910 remove sync() call from Windows build (cherry picked from commit 049c95d74cab7ba99b99f9634a32f38058c86fb1) --- diff --git a/src/vol/ihandle.c b/src/vol/ihandle.c index 2713bba8a..c502d339f 100644 --- a/src/vol/ihandle.c +++ b/src/vol/ihandle.c @@ -913,8 +913,10 @@ ih_sync_thread() { IOMGR_Sleep(60); #endif /* AFS_PTHREAD_ENV */ - sync(); - ih_sync_all(); +#ifndef AFS_NT40_ENV + sync(); +#endif + ih_sync_all(); } }