File tree 2 files changed +32
-1
lines changed
2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 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.5 ' ,
41
+ 'v8_embedder_string' : '-node.6 ' ,
42
42
43
43
##### V8 defaults for Node.js #####
44
44
Original file line number Diff line number Diff line change 10
10
#include " src/codegen/x64/assembler-x64.h"
11
11
#include " src/utils/allocation.h"
12
12
13
+ // Forward declaration to keep this independent of Win8
14
+ NTSYSAPI
15
+ DWORD
16
+ NTAPI
17
+ RtlAddGrowableFunctionTable (
18
+ _Out_ PVOID* DynamicTable,
19
+ _In_reads_ (MaximumEntryCount) PRUNTIME_FUNCTION FunctionTable,
20
+ _In_ DWORD EntryCount,
21
+ _In_ DWORD MaximumEntryCount,
22
+ _In_ ULONG_PTR RangeBase,
23
+ _In_ ULONG_PTR RangeEnd
24
+ );
25
+
26
+
27
+ NTSYSAPI
28
+ void
29
+ NTAPI
30
+ RtlGrowFunctionTable (
31
+ _Inout_ PVOID DynamicTable,
32
+ _In_ DWORD NewEntryCount
33
+ );
34
+
35
+
36
+ NTSYSAPI
37
+ void
38
+ NTAPI
39
+ RtlDeleteGrowableFunctionTable (
40
+ _In_ PVOID DynamicTable
41
+ );
42
+
43
+
13
44
namespace v8 {
14
45
namespace internal {
15
46
namespace win64_unwindinfo {
You can’t perform that action at this time.
0 commit comments