From: Derrick Brashear Date: Mon, 10 Sep 2007 22:55:58 +0000 (+0000) Subject: STABLE14-namei-fsync-less-20070910 X-Git-Tag: openafs-stable-1_4_5-pre1~13 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=4b0c0d2af5d879642eda039aad28444185bf0952;p=packages%2Fo%2Fopenafs.git STABLE14-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(); } }