[Lldb-commits] [PATCH] D70363: [lldb] [test] Fix lldb-server/thread-name test code for NetBSD

2019-11-17 Thread Michał Górny via Phabricator via lldb-commits
mgorny created this revision. mgorny added reviewers: krytarowski, labath. Herald added a subscriber: jfb. Fix incorrect type passed to pthread_setname_np() on NetBSD. This fixes the test to build fine but the underlying function is still not implemented. https://reviews.llvm.org/D70363 Files:

[Lldb-commits] [PATCH] D70363: [lldb] [Process/NetBSD] Implement thread name getting

2019-11-17 Thread Michał Górny via Phabricator via lldb-commits
mgorny updated this revision to Diff 229730. mgorny retitled this revision from "[lldb] [test] Fix lldb-server/thread-name test code for NetBSD" to "[lldb] [Process/NetBSD] Implement thread name getting". mgorny edited the summary of this revision. mgorny added a comment. Went a bit further and

[Lldb-commits] [PATCH] D70363: [lldb] [Process/NetBSD] Implement thread name getting

2019-11-17 Thread Kamil Rytarowski via Phabricator via lldb-commits
krytarowski added inline comments. Comment at: lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.cpp:22 +#include + Please include before this header ``. If it works, that header is likely pulled from some indirect location. CHANGES SINCE LAST ACTION

[Lldb-commits] [PATCH] D70363: [lldb] [Process/NetBSD] Implement thread name getting

2019-11-17 Thread Michał Górny via Phabricator via lldb-commits
mgorny updated this revision to Diff 229751. mgorny added a comment. Added sys/types.h. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D70363/new/ https://reviews.llvm.org/D70363 Files: lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/TestGdbRemoteThreadName.py lldb