We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c9138f commit 86d1998Copy full SHA for 86d1998
common.gypi
@@ -38,7 +38,7 @@
38
39
# Reset this number to 0 on major V8 upgrades.
40
# Increment by one for each non-official patch applied to deps/v8.
41
- 'v8_embedder_string': '-node.25',
+ 'v8_embedder_string': '-node.26',
42
43
##### V8 defaults for Node.js #####
44
deps/v8/src/base/platform/time.cc
@@ -70,6 +70,9 @@ V8_INLINE int64_t ClockNow(clockid_t clk_id) {
70
#if defined(V8_OS_AIX)
71
thread_cputime_t tc;
72
if (clk_id == CLOCK_THREAD_CPUTIME_ID) {
73
+#if defined(__PASE__) // CLOCK_THREAD_CPUTIME_ID clock not supported on IBMi
74
+ return 0;
75
+#endif
76
if (thread_cputime(-1, &tc) != 0) {
77
UNREACHABLE();
78
}
0 commit comments