diff options
Diffstat (limited to 'compiler-rt/lib/memprof')
-rw-r--r-- | compiler-rt/lib/memprof/memprof_thread.cpp | 2 | ||||
-rw-r--r-- | compiler-rt/lib/memprof/memprof_thread.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/memprof/memprof_thread.cpp b/compiler-rt/lib/memprof/memprof_thread.cpp index 4b9665f..11cc481 100644 --- a/compiler-rt/lib/memprof/memprof_thread.cpp +++ b/compiler-rt/lib/memprof/memprof_thread.cpp @@ -131,7 +131,7 @@ void MemprofThread::Init(const InitOptions *options) { } thread_return_t -MemprofThread::ThreadStart(tid_t os_id, +MemprofThread::ThreadStart(ThreadID os_id, atomic_uintptr_t *signal_thread_is_registered) { Init(); memprofThreadRegistry().StartThread(tid(), os_id, ThreadType::Regular, diff --git a/compiler-rt/lib/memprof/memprof_thread.h b/compiler-rt/lib/memprof/memprof_thread.h index fb90dbf..c7009c30 100644 --- a/compiler-rt/lib/memprof/memprof_thread.h +++ b/compiler-rt/lib/memprof/memprof_thread.h @@ -59,7 +59,7 @@ public: struct InitOptions; void Init(const InitOptions *options = nullptr); - thread_return_t ThreadStart(tid_t os_id, + thread_return_t ThreadStart(ThreadID os_id, atomic_uintptr_t *signal_thread_is_registered); uptr stack_top(); |