Use the correct type for ProcessReader::Thread::port.

It is a thread_t, not a task_t.

R=rsesek@chromium.org

Review URL: https://codereview.chromium.org/627683002
This commit is contained in:
Mark Mentovai 2014-10-03 12:05:56 -04:00
parent 47f17926e4
commit bc8626f898

View File

@ -67,7 +67,7 @@ class ProcessReader {
mach_vm_address_t stack_region_address;
mach_vm_size_t stack_region_size;
mach_vm_address_t thread_specific_data_address;
task_t port;
thread_t port;
int suspend_count;
int priority;
};