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:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2021-04-09 14:08:28 +0300
committerGerhard Stoebich <18708370+Flarna@users.noreply.github.com>2021-04-12 00:15:47 +0300
commit548cbf0625cdfc8827de2dcdb84548fa8b17a290 (patch)
tree086e11524eeb94d4b6cd7ca00bfb79b6d63a2dad /src/node_perf.h
parent993a1da47cb2060da65cc51484d71de81f1fc443 (diff)
perf_hooks: fix loop delay resolution validation
Fixes: https://github.com/nodejs/node/issues/38160 PR-URL: https://github.com/nodejs/node/pull/38166 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'src/node_perf.h')
-rw-r--r--src/node_perf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_perf.h b/src/node_perf.h
index d0f1d684622..33cf9f2ec65 100644
--- a/src/node_perf.h
+++ b/src/node_perf.h
@@ -166,7 +166,7 @@ class ELDHistogram : public IntervalHistogram {
ELDHistogram(
Environment* env,
v8::Local<v8::Object> wrap,
- int32_t interval);
+ int64_t interval);
void OnInterval() override;