Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d6e5dd5

Browse filesBrowse files
refacktargos
authored andcommitted
deps: V8: forward declaration of Rtl*FunctionTable
This should be semver-patch since actual invocation is version conditional. PR-URL: #32116 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
1 parent 29a6e15 commit d6e5dd5
Copy full SHA for d6e5dd5

File tree

Expand file treeCollapse file tree

2 files changed

+31
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

2 files changed

+31
-1
lines changed
Open diff view settings
Collapse file

‎common.gypi‎

Copy file name to clipboardExpand all lines: common.gypi
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
# Reset this number to 0 on major V8 upgrades.
3838
# Increment by one for each non-official patch applied to deps/v8.
39-
'v8_embedder_string': '-node.2',
39+
'v8_embedder_string': '-node.3',
4040

4141
##### V8 defaults for Node.js #####
4242

Collapse file

‎deps/v8/src/diagnostics/unwinding-info-win64.cc‎

Copy file name to clipboardExpand all lines: deps/v8/src/diagnostics/unwinding-info-win64.cc
+30Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,36 @@
2222
// This has to come after windows.h.
2323
#include <versionhelpers.h> // For IsWindows8OrGreater().
2424

25+
// Forward declaration to keep this independent of Win8
26+
NTSYSAPI
27+
DWORD
28+
NTAPI
29+
RtlAddGrowableFunctionTable(
30+
_Out_ PVOID* DynamicTable,
31+
_In_reads_(MaximumEntryCount) PRUNTIME_FUNCTION FunctionTable,
32+
_In_ DWORD EntryCount,
33+
_In_ DWORD MaximumEntryCount,
34+
_In_ ULONG_PTR RangeBase,
35+
_In_ ULONG_PTR RangeEnd
36+
);
37+
38+
39+
NTSYSAPI
40+
void
41+
NTAPI
42+
RtlGrowFunctionTable(
43+
_Inout_ PVOID DynamicTable,
44+
_In_ DWORD NewEntryCount
45+
);
46+
47+
48+
NTSYSAPI
49+
void
50+
NTAPI
51+
RtlDeleteGrowableFunctionTable(
52+
_In_ PVOID DynamicTable
53+
);
54+
2555
namespace v8 {
2656
namespace internal {
2757
namespace win64_unwindinfo {

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.