summaryrefslogtreecommitdiff
path: root/include/lldb/API/SBHostOS.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/API/SBHostOS.h')
-rw-r--r--include/lldb/API/SBHostOS.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/lldb/API/SBHostOS.h b/include/lldb/API/SBHostOS.h
index 52754ea4e8297..e5fab6fe78493 100644
--- a/include/lldb/API/SBHostOS.h
+++ b/include/lldb/API/SBHostOS.h
@@ -30,7 +30,7 @@ public:
static lldb::thread_t
ThreadCreate (const char *name,
- void *(*thread_function)(void *),
+ thread_func_t thread_function,
void *thread_arg,
lldb::SBError *err);
@@ -43,7 +43,7 @@ public:
lldb::SBError *err);
static bool
ThreadJoin (lldb::thread_t thread,
- void **result,
+ thread_result_t *result,
lldb::SBError *err);