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 8ed2583

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 4ef37c8 commit 8ed2583
Copy full SHA for 8ed2583

File tree

Expand file treeCollapse file tree

2 files changed

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

2 files changed

+32
-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
+31Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,37 @@
1717
#error "Unsupported OS"
1818
#endif // V8_OS_WIN_X64
1919

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

0 commit comments

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