Add the native thread state to art SIGQUIT dumps.
Bug: 7053953
Change-Id: I9be3f828332e5bbb003644802d7770b58d8298ed
diff --git a/src/utils.h b/src/utils.h
index 7372ee2..b59f114 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -302,7 +302,7 @@
void GetThreadStack(void*& stack_base, size_t& stack_size);
// Reads data from "/proc/self/task/${tid}/stat".
-void GetTaskStats(pid_t tid, int& utime, int& stime, int& task_cpu);
+void GetTaskStats(pid_t tid, char& state, int& utime, int& stime, int& task_cpu);
// Returns the name of the scheduler group for the given thread the current process, or the empty string.
std::string GetSchedulerGroupName(pid_t tid);