| Index: runtime/bin/process_linux.cc
|
| diff --git a/runtime/bin/process_linux.cc b/runtime/bin/process_linux.cc
|
| index 221541a996734bca6dcbd29a7aadaa800607aa2c..ef0927a96287a3bc4dd44f71bbd315dc300244a5 100644
|
| --- a/runtime/bin/process_linux.cc
|
| +++ b/runtime/bin/process_linux.cc
|
| @@ -632,14 +632,15 @@ intptr_t Process::CurrentProcessId() {
|
|
|
| static Mutex* signal_mutex = new Mutex();
|
| static SignalInfo* signal_handlers = NULL;
|
| -static const int kSignalsCount = 6;
|
| +static const int kSignalsCount = 7;
|
| static const int kSignals[kSignalsCount] = {
|
| SIGHUP,
|
| SIGINT,
|
| SIGTERM,
|
| SIGUSR1,
|
| SIGUSR2,
|
| - SIGWINCH
|
| + SIGWINCH,
|
| + SIGQUIT // Allow VMService to listen on SIGQUIT.
|
| };
|
|
|
|
|
|
|