From 974b0875bd17589f22804b49f22364ee4af44817 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Mon, 10 Sep 2007 22:59:14 +0000 Subject: [PATCH] DEVEL15-namei-fsync-less-20070910 remove sync() call from Windows build (cherry picked from commit 049c95d74cab7ba99b99f9634a32f38058c86fb1) --- src/vol/ihandle.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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(); } } -- 2.39.5