Skip to content

Commit 47e7d7f

Browse files
committedFeb 27, 2017
Support NetBSD Thread ID in lldb-server tests
Summary: Native Thread ID is retrieved with _lwp_self() on NetBSD. The returned value is of type int32_t, but for consistency with other Operating Systems cast it to uint64_t. Sponsored by <The NetBSD Foundation> Reviewers: joerg, labath, clayborg, emaste Reviewed By: labath, clayborg Subscribers: #lldb Tags: #lldb Differential Revision: https://reviews.llvm.org/D30374 llvm-svn: 296360
1 parent 5309887 commit 47e7d7f

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed
 

‎lldb/packages/Python/lldbsuite/test/tools/lldb-server/exit-code/main.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_3_2)
1818
int pthread_threadid_np(pthread_t, __uint64_t *);
1919
#elif defined(__linux__)
2020
#include <sys/syscall.h>
21+
#elif defined(__NetBSD__)
22+
#include <lwp.h>
2123
#endif
2224

2325
static const char *const RETVAL_PREFIX = "retval:";
@@ -62,6 +64,9 @@ static void print_thread_id() {
6264
#elif defined(__linux__)
6365
// This is a call to gettid() via syscall.
6466
printf("%" PRIx64, static_cast<uint64_t>(syscall(__NR_gettid)));
67+
#elif defined(__NetBSD__)
68+
// Technically lwpid_t is 32-bit signed integer
69+
printf("%" PRIx64, static_cast<uint64_t>(_lwp_self()));
6570
#else
6671
printf("{no-tid-support}");
6772
#endif

‎lldb/packages/Python/lldbsuite/test/tools/lldb-server/main.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_3_2)
2727
int pthread_threadid_np(pthread_t, __uint64_t *);
2828
#elif defined(__linux__)
2929
#include <sys/syscall.h>
30+
#elif defined(__NetBSD__)
31+
#include <lwp.h>
3032
#endif
3133

3234
static const char *const RETVAL_PREFIX = "retval:";
@@ -71,6 +73,9 @@ static void print_thread_id() {
7173
#elif defined(__linux__)
7274
// This is a call to gettid() via syscall.
7375
printf("%" PRIx64, static_cast<uint64_t>(syscall(__NR_gettid)));
76+
#elif defined(__NetBSD__)
77+
// Technically lwpid_t is 32-bit signed integer
78+
printf("%" PRIx64, static_cast<uint64_t>(_lwp_self()));
7479
#else
7580
printf("{no-tid-support}");
7681
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.