We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 254a71b commit 9c6b690Copy full SHA for 9c6b690
lldb/include/lldb/lldb-types.h
@@ -33,11 +33,11 @@
33
// LLDB_INVALID_HOST_THREAD The value of an invalid lldb::thread_t
34
// LLDB_INVALID_PIPE The value of an invalid lldb::pipe_t
35
36
-namespace lldb {
37
-
38
#ifdef _WIN32
39
40
#include <process.h>
+
+namespace lldb {
41
typedef void *rwlock_t;
42
typedef void *process_t; // Process type is HANDLE
43
typedef void *thread_t; // Host thread type
@@ -51,6 +51,8 @@ typedef void *pipe_t; // Host pipe type is HANDLE
51
#else
52
53
#include <pthread.h>
54
55
56
typedef pthread_rwlock_t rwlock_t;
57
typedef uint64_t process_t; // Process type is just a pid.
58
typedef pthread_t thread_t; // Host thread type
0 commit comments