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

Unified Diff: runtime/bin/process_macos.cc

Issue 149253013: Document ProcessSignal::watch. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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
Index: runtime/bin/process_macos.cc
diff --git a/runtime/bin/process_macos.cc b/runtime/bin/process_macos.cc
index e369b215a5c4c92b8fa9c7df9e1efa43f42ad487..c2d8b2092f339e21f21b2db0d76ed576d6a38c92 100644
--- a/runtime/bin/process_macos.cc
+++ b/runtime/bin/process_macos.cc
@@ -676,13 +676,14 @@ intptr_t Process::CurrentProcessId() {
static Mutex* signal_mutex = new Mutex();
static SignalInfo* signal_handlers = NULL;
-static const int kSignalsCount = 5;
+static const int kSignalsCount = 6;
static const int kSignals[kSignalsCount] = {
+ SIGHUP,
SIGINT,
- SIGWINCH,
SIGTERM,
SIGUSR1,
- SIGUSR2
+ SIGUSR2,
+ SIGWINCH
};

Powered by Google App Engine
This is Rietveld 408576698