| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent c7dafd8 commit 76eaf24
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -38,7 +38,7 @@ | |||
| 38 | 38 | ||
| 39 | 39 | # Reset this number to 0 on major V8 upgrades. | |
| 40 | 40 | # Increment by one for each non-official patch applied to deps/v8. | |
| 41 | - 'v8_embedder_string': '-node.25', | ||
| 41 | + 'v8_embedder_string': '-node.26', | ||
| 42 | 42 | ||
| 43 | 43 | ##### V8 defaults for Node.js ##### | |
| 44 | 44 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -70,6 +70,9 @@ V8_INLINE int64_t ClockNow(clockid_t clk_id) { | |||
| 70 | 70 | #if defined(V8_OS_AIX) | |
| 71 | 71 | thread_cputime_t tc; | |
| 72 | 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 | ||
| 73 | 76 | if (thread_cputime(-1, &tc) != 0) { | |
| 74 | 77 | UNREACHABLE(); | |
| 75 | 78 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments