diff options
Diffstat (limited to 'runtime/utils.h')
-rw-r--r-- | runtime/utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/utils.h b/runtime/utils.h index c89c41f383..ad08697c92 100644 --- a/runtime/utils.h +++ b/runtime/utils.h @@ -414,7 +414,7 @@ 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, size_t* guard_size); // Reads data from "/proc/self/task/${tid}/stat". void GetTaskStats(pid_t tid, char* state, int* utime, int* stime, int* task_cpu); |