diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-11-19 16:49:25 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-19 16:49:25 +0530 |
commit | 069bc15030225393f7d05521505316066464bdbd (patch) | |
tree | 8665758ced09dc2876aeedadffe27d2f0e181a09 /ext/node/ops/mod.rs | |
parent | 0e2f6e38e7b93e42099f546ef2c01629964d095a (diff) |
feat(ext/node): perf_hooks.monitorEventLoopDelay() (#26905)
Fixes https://github.com/denoland/deno/issues/20961
Depends on https://github.com/denoland/deno_core/pull/965 and
https://github.com/denoland/deno_core/pull/966
Diffstat (limited to 'ext/node/ops/mod.rs')
-rw-r--r-- | ext/node/ops/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/ops/mod.rs b/ext/node/ops/mod.rs index b53f19dc2..e5ea8b417 100644 --- a/ext/node/ops/mod.rs +++ b/ext/node/ops/mod.rs @@ -10,6 +10,7 @@ pub mod idna; pub mod inspector; pub mod ipc; pub mod os; +pub mod perf_hooks; pub mod process; pub mod require; pub mod tls; |