| Index: runtime/bin/process_android.cc
|
| diff --git a/runtime/bin/process_android.cc b/runtime/bin/process_android.cc
|
| index 5d17d0426da2225fc3e8f5e7760998fd42a9f756..eda6e9b23b17d53ff1f472253abfbdc9d9415687 100644
|
| --- a/runtime/bin/process_android.cc
|
| +++ b/runtime/bin/process_android.cc
|
| @@ -635,13 +635,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
|
| };
|
|
|
|
|
|
|