Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2021-02-08 17:13:37 +0300
committerJoyee Cheung <joyeec9h3@gmail.com>2021-02-19 14:08:06 +0300
commit8aa9b772f4892ab44e74d3e7df0733408b7d2bc8 (patch)
tree325563f3d49e086f75a0cdf9f4a9219c0734c443 /src/node_stat_watcher.cc
parent3c8290c5a8afd851f2521a507b375ca5c91ce87b (diff)
bootstrap: include fs module into the builtin snapshot
PR-URL: https://github.com/nodejs/node/pull/36943 Fixes: https://github.com/nodejs/node/issues/35930 Refs: https://github.com/nodejs/node/issues/35711 Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/node_stat_watcher.cc')
-rw-r--r--src/node_stat_watcher.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/node_stat_watcher.cc b/src/node_stat_watcher.cc
index 344ea6bb7ea..b9f7903a2fd 100644
--- a/src/node_stat_watcher.cc
+++ b/src/node_stat_watcher.cc
@@ -19,10 +19,11 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include "memory_tracker-inl.h"
#include "node_stat_watcher.h"
#include "async_wrap-inl.h"
#include "env-inl.h"
+#include "memory_tracker-inl.h"
+#include "node_external_reference.h"
#include "node_file-inl.h"
#include "util-inl.h"
@@ -55,6 +56,11 @@ void StatWatcher::Initialize(Environment* env, Local<Object> target) {
env->SetConstructorFunction(target, "StatWatcher", t);
}
+void StatWatcher::RegisterExternalReferences(
+ ExternalReferenceRegistry* registry) {
+ registry->Register(StatWatcher::New);
+ registry->Register(StatWatcher::Start);
+}
StatWatcher::StatWatcher(fs::BindingData* binding_data,
Local<Object> wrap,