| Index: runtime/bin/process_linux.cc
|
| diff --git a/runtime/bin/process_linux.cc b/runtime/bin/process_linux.cc
|
| index 175e36d858ee09633a8dea059494060020411b9f..037dd16c39b7c90b9a570ba26f7375a6a57b6d5f 100644
|
| --- a/runtime/bin/process_linux.cc
|
| +++ b/runtime/bin/process_linux.cc
|
| @@ -634,13 +634,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
|
| };
|
|
|
|
|
|
|