We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e28e873 commit 7fe8399Copy full SHA for 7fe8399
common.gypi
@@ -39,7 +39,7 @@
39
40
# Reset this number to 0 on major V8 upgrades.
41
# Increment by one for each non-official patch applied to deps/v8.
42
- 'v8_embedder_string': '-node.24',
+ 'v8_embedder_string': '-node.25',
43
44
##### V8 defaults for Node.js #####
45
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