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

Unified Diff: src/native_client/src/trusted/service_runtime/win/nacl_signal.c

Issue 6798008: Add an assertion to check that Chrome/Breakpad does not install a signal handler (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Use %d; amend Windows comment Created 9 years, 8 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/native_client/src/trusted/service_runtime/sel_main_chrome.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/native_client/src/trusted/service_runtime/win/nacl_signal.c
diff --git a/src/native_client/src/trusted/service_runtime/win/nacl_signal.c b/src/native_client/src/trusted/service_runtime/win/nacl_signal.c
index 97ca8b8920b8771b74b5401f115823fb200e2aef..a24f96d1aab8019ba1bdb102f2bd3b50e06c1128 100644
--- a/src/native_client/src/trusted/service_runtime/win/nacl_signal.c
+++ b/src/native_client/src/trusted/service_runtime/win/nacl_signal.c
@@ -131,3 +131,10 @@ void NaClSignalHandlerFiniPlatform(void) {
/* Remove our old catch if there is one, this allows us to add again */
if (NULL != s_VEH) RemoveVectoredExceptionHandler(s_VEH);
}
+
+void NaClSignalAssertNoHandlers() {
+ /*
+ * Windows has no direct equivalent of Unix signal handlers. There
+ * is no interface for checking that no fault handlers are registered.
+ */
+}
« no previous file with comments | « src/native_client/src/trusted/service_runtime/sel_main_chrome.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698