labath added inline comments.

================
Comment at: source/Plugins/Process/elf-core/ProcessElfCore.cpp:224
+      // If all else fails force the first thread to be SIGSTOP
+      m_thread_data.begin()->signo = SIGSTOP;
+    }
----------------
You should not use signal numbers from the host here -- the macro may not be 
present (windows), or it may not have the same value. You need to get the 
correct set of signals with Process::GetUnixSignals(), and then look up the 
signal by name.


https://reviews.llvm.org/D26676



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

Reply via email to