From bea5e6eff6b2a9104da504cca0db01ed15cb90ae Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Fri, 26 Nov 2010 01:27:14 +0100 Subject: [PATCH] Re-enable stat watchers on windows This reverts commit b8a99f94167a25f63ae096d9d5e2cc9cf70cecef. --- src/node_file.cc | 2 -- src/node_stat_watcher.cc | 4 ---- 2 files changed, 6 deletions(-) diff --git a/src/node_file.cc b/src/node_file.cc index 9eb0489..638479a 100644 --- a/src/node_file.cc +++ b/src/node_file.cc @@ -851,9 +851,7 @@ void InitFs(Handle target) { stats_constructor_template = Persistent::New(stat_templ); target->Set(String::NewSymbol("Stats"), stats_constructor_template->GetFunction()); -#ifdef __POSIX__ StatWatcher::Initialize(target); -#endif // __POSIX__ File::Initialize(target); } diff --git a/src/node_stat_watcher.cc b/src/node_stat_watcher.cc index 5173f1a..bbc4fdf 100644 --- a/src/node_stat_watcher.cc +++ b/src/node_stat_watcher.cc @@ -1,5 +1,3 @@ -#ifdef __POSIX__ - // Copyright 2009 Ryan Dahl #include @@ -113,5 +111,3 @@ void StatWatcher::Stop () { } // namespace node - -#endif // __POSIX__ -- 2.7.4