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

Unified Diff: runtime/bin/signal_blocker.h

Issue 119093007: Signal handling, take 2. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Clean up Windows Created 7 years 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
Index: runtime/bin/signal_blocker.h
diff --git a/runtime/bin/signal_blocker.h b/runtime/bin/signal_blocker.h
index 58e8d7eb00bdf5dfb568efcd6f5d9f9a5fbb7b61..1ab816c145deda0af496c680557b4b146199b433 100644
--- a/runtime/bin/signal_blocker.h
+++ b/runtime/bin/signal_blocker.h
@@ -26,12 +26,26 @@ class ThreadSignalBlocker {
sigaddset(&signal_mask, sig);
// Add sig to signal mask.
int r = pthread_sigmask(SIG_BLOCK, &signal_mask, &old);
+ USE(r);
+ ASSERT(r == 0);
+ }
+
+ ThreadSignalBlocker(int sigs_count, const int sigs[]) {
+ sigset_t signal_mask;
+ sigemptyset(&signal_mask);
+ for (int i = 0; i < sigs_count; i++) {
+ sigaddset(&signal_mask, sigs[i]);
+ }
+ // Add sig to signal mask.
+ int r = pthread_sigmask(SIG_BLOCK, &signal_mask, &old);
+ USE(r);
ASSERT(r == 0);
}
~ThreadSignalBlocker() {
// Restore signal mask.
int r = pthread_sigmask(SIG_SETMASK, &old, NULL);
+ USE(r);
ASSERT(r == 0);
}

Powered by Google App Engine
This is Rietveld 408576698