[lldb-dev] SBThread::IsStopped() always returns false on Linux

Eugene Birukov eugenebi at hotmail.com
Fri Jun 5 14:28:22 PDT 2015


Hi,
I am running lldb-4.7 that I built from sources on Linux Ubuntu 14.04.
I am using C++ API to debug my program. The program runs into different events: breakpoints I set, signals. But all threads always returnIsStopped() as false in any program state. I traced this call and it seems that the thread state is eStateUnloaded. The only place I found that changes thread state in Thread.cpp is this method:
voidThread::SetState(StateType state){    Mutex::Locker locker(m_state_mutex);    m_state = state;}
So, I put breakpoint there and it is never hit. I tried to put similar breakpoint in lldb-server, but it seems that the method is not present here:
(gdb) b lldb_private::Target::SetSSetSectionLoadAddress(std::shared_ptr<lldb_private::Section> const&, unsigned long, bool)SetSectionUnloaded(std::shared_ptr<lldb_private::Section> const&)SetSectionUnloaded(std::shared_ptr<lldb_private::Section> const&, unsigned long)SetStopHookActiveStateByID(unsigned long, bool)(gdb) b lldb_private::Target::SetStateFunction "lldb_private::Target::SetState" not defined.Make breakpoint pending on future shared library load? (y or [n])
So far, this seems broken to me.
Thanks,Eugene 		 	   		  
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/lldb-dev/attachments/20150605/3f04d29b/attachment.html>


More information about the lldb-dev mailing list