labath added inline comments.

================
Comment at: lldb/test/Shell/Watchpoint/Inputs/thread-dbreg.c:1-23
+#include <pthread.h>
+
+int g_watchme = 0;
+
+void *thread_func(void *arg) {
+  /* watchpoint trigger from subthread */
+  g_watchme = 2;
----------------
labath wrote:
> mgorny wrote:
> > labath wrote:
> > > Maybe simplify this and remove the threads and stuff?
> > Threads are intentional since new thread handler copies dbregs per the 
> > other patch. This makes sure that new thread handler will not crash when it 
> > is unable to set dbregs.
> Hang on, isn't this test about what happens when you *cannot* set 
> watchpoints? In that case there should be nothing to copy the dbregs from, 
> right?
Hmm... or is it that you're testing that the act of trying to copy this 
"nothing" works? In that case, this might be fine, but it'd probably be worth 
mentioning this in the test case.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D70050/new/

https://reviews.llvm.org/D70050



_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to