diff options
Diffstat (limited to 'user/node/pmmx-time64.patch')
-rw-r--r-- | user/node/pmmx-time64.patch | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/user/node/pmmx-time64.patch b/user/node/pmmx-time64.patch index b47a1a6fe..01cea0089 100644 --- a/user/node/pmmx-time64.patch +++ b/user/node/pmmx-time64.patch @@ -52,17 +52,17 @@ return new BigIntStats( stats[0 + offset], stats[1 + offset], stats[2 + offset], stats[3 + offset], stats[4 + offset], stats[5 + offset], ---- node-v18.12.1/src/aliased_buffer.h.old 2022-11-04 11:13:14.000000000 -0500 -+++ node-v18.12.1/src/aliased_buffer.h 2023-01-01 18:08:01.407999936 -0600 -@@ -306,7 +306,7 @@ - typedef AliasedBufferBase<uint8_t, v8::Uint8Array> AliasedUint8Array; - typedef AliasedBufferBase<uint32_t, v8::Uint32Array> AliasedUint32Array; - typedef AliasedBufferBase<double, v8::Float64Array> AliasedFloat64Array; --typedef AliasedBufferBase<int64_t, v8::BigInt64Array> AliasedBigInt64Array; -+typedef AliasedBufferBase<int64_t, v8::BigUint64Array> AliasedBigUint64Array; - } // namespace node +--- node-v18.20.8/src/aliased_buffer.h.old 2025-03-26 19:56:44.000000000 -0500 ++++ node-v18.20.8/src/aliased_buffer.h 2025-06-26 23:34:10.893322022 -0500 +@@ -183,7 +183,7 @@ + V(uint32_t, Uint32Array) \ + V(float, Float32Array) \ + V(double, Float64Array) \ +- V(int64_t, BigInt64Array) ++ V(int64_t, BigUint64Array) - #endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS + #define V(NativeT, V8T) \ + typedef AliasedBufferBase<NativeT, v8::V8T> Aliased##V8T; --- node-v18.12.1/src/node_file-inl.h.old 2022-11-04 11:13:14.000000000 -0500 +++ node-v18.12.1/src/node_file-inl.h 2023-01-01 18:09:07.830823990 -0600 @@ -90,18 +90,9 @@ @@ -84,7 +84,7 @@ SET_FIELD_WITH_STAT(kDev, s->st_dev); SET_FIELD_WITH_STAT(kMode, s->st_mode); -@@ -242,7 +233,7 @@ +@@ -281,7 +272,7 @@ Environment* env = binding_data->env(); if (value->StrictEquals(env->fs_use_promises_symbol())) { if (use_bigint) { |