| 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
|
| };
|
|
|
|
|
|
|