Re-enable stat watchers on windows

This reverts commit b8a99f94167a25f63ae096d9d5e2cc9cf70cecef.
pull/22966/head
Bert Belder 2010-11-26 01:27:14 +01:00
parent 967b7b0d8c
commit bea5e6eff6
2 changed files with 0 additions and 6 deletions

View File

@ -851,9 +851,7 @@ void InitFs(Handle<Object> target) {
stats_constructor_template = Persistent<FunctionTemplate>::New(stat_templ);
target->Set(String::NewSymbol("Stats"),
stats_constructor_template->GetFunction());
#ifdef __POSIX__
StatWatcher::Initialize(target);
#endif // __POSIX__
File::Initialize(target);
}

View File

@ -1,5 +1,3 @@
#ifdef __POSIX__
// Copyright 2009 Ryan Dahl <ry@tinyclouds.org>
#include <node_stat_watcher.h>
@ -113,5 +111,3 @@ void StatWatcher::Stop () {
} // namespace node
#endif // __POSIX__