Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Unified Diff: src/api.cc

Issue 2371833007: [wasm] Initial signal handler (Closed)
Patch Set: Make sure guard pages get set up when resizing from 0 to more than 0 Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/DEPS ('k') | src/compiler/wasm-compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/api.cc
diff --git a/src/api.cc b/src/api.cc
index b9a169339525a00b0ef328f316a64ebf6c6ea65f..efcd3c8bfaca2aab836d7cbebbeaf7898960fcd5 100644
--- a/src/api.cc
+++ b/src/api.cc
@@ -69,6 +69,7 @@
#include "src/snapshot/snapshot.h"
#include "src/startup-data-util.h"
#include "src/tracing/trace-event.h"
+#include "src/trap-handler/trap-handler.h"
#include "src/unicode-inl.h"
#include "src/v8.h"
#include "src/v8threads.h"
@@ -6154,6 +6155,16 @@ bool v8::V8::Initialize() {
return true;
}
+#if V8_OS_LINUX && V8_TARGET_ARCH_X64
+bool V8::TryHandleSignal(int signum, void* info, void* context) {
+ return v8::internal::trap_handler::TryHandleSignal(
+ signum, static_cast<siginfo_t*>(info), static_cast<ucontext_t*>(context));
+}
+#endif // V8_OS_LINUX
+
+bool V8::RegisterDefaultSignalHandler() {
+ return v8::internal::trap_handler::RegisterDefaultSignalHandler();
+}
void v8::V8::SetEntropySource(EntropySource entropy_source) {
base::RandomNumberGenerator::SetEntropySource(entropy_source);
« no previous file with comments | « src/DEPS ('k') | src/compiler/wasm-compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698