mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
deps: V8: forward declaration of Rtl*FunctionTable
This should be semver-patch since actual invocation is version conditional. PR-URL: https://github.com/nodejs/node/pull/27375 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
This commit is contained in:
parent
9457fab1ad
commit
a6e7d21424
@ -38,7 +38,7 @@
|
||||
|
||||
# Reset this number to 0 on major V8 upgrades.
|
||||
# Increment by one for each non-official patch applied to deps/v8.
|
||||
'v8_embedder_string': '-node.7',
|
||||
'v8_embedder_string': '-node.8',
|
||||
|
||||
##### V8 defaults for Node.js #####
|
||||
|
||||
|
31
deps/v8/src/unwinding-info-win64.cc
vendored
31
deps/v8/src/unwinding-info-win64.cc
vendored
@ -10,6 +10,37 @@
|
||||
#include "src/macro-assembler.h"
|
||||
#include "src/x64/assembler-x64.h"
|
||||
|
||||
// Forward declaration to keep this independent of Win8
|
||||
NTSYSAPI
|
||||
DWORD
|
||||
NTAPI
|
||||
RtlAddGrowableFunctionTable(
|
||||
_Out_ PVOID* DynamicTable,
|
||||
_In_reads_(MaximumEntryCount) PRUNTIME_FUNCTION FunctionTable,
|
||||
_In_ DWORD EntryCount,
|
||||
_In_ DWORD MaximumEntryCount,
|
||||
_In_ ULONG_PTR RangeBase,
|
||||
_In_ ULONG_PTR RangeEnd
|
||||
);
|
||||
|
||||
|
||||
NTSYSAPI
|
||||
void
|
||||
NTAPI
|
||||
RtlGrowFunctionTable(
|
||||
_Inout_ PVOID DynamicTable,
|
||||
_In_ DWORD NewEntryCount
|
||||
);
|
||||
|
||||
|
||||
NTSYSAPI
|
||||
void
|
||||
NTAPI
|
||||
RtlDeleteGrowableFunctionTable(
|
||||
_In_ PVOID DynamicTable
|
||||
);
|
||||
|
||||
|
||||
namespace v8 {
|
||||
namespace internal {
|
||||
namespace win64_unwindinfo {
|
||||
|
Loading…
Reference in New Issue
Block a user