diff options
Diffstat (limited to 'runtime/utils.h')
| -rw-r--r-- | runtime/utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/utils.h b/runtime/utils.h index c506fbaad0..34e94592a4 100644 --- a/runtime/utils.h +++ b/runtime/utils.h @@ -323,10 +323,10 @@ pid_t GetTid(); std::string GetThreadName(pid_t tid); // Returns details of the given thread's stack. -void GetThreadStack(pthread_t thread, void*& stack_base, size_t& stack_size); +void GetThreadStack(pthread_t thread, void** stack_base, size_t* stack_size); // Reads data from "/proc/self/task/${tid}/stat". -void GetTaskStats(pid_t tid, char& state, 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); |