Project Home
Project Home
Trackers
Trackers
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - Debugger breaks because of "shared library event": (3 Items)
   
Debugger breaks because of "shared library event"  
While debugging my program on x86 machine from the IDE v 4.6, I did something I don't remember what - and now the 
debugger breaks very often  with message: "Stopped due to shared library event"
inside _dl_debug_state() library function.
It won't care to explain what is the problem. It looks that there is no problem at all;  when I resume (F8) the program 
continues.

What are these "shared library events" and how to convince gdb not to break on them? It is very annoying.

I have a dynamically loaded library (dlopen'ed) and  debug it together with the main program.

Thanks for any idea,
- S.

RE: Debugger breaks because of "shared library event"  
In your debug launch config, in the "Debugger" tab, under the "Shared Libraries" sub-tab, deselect the "Stop on shared 
libraries events" option.

Attachment: Text winmail.dat 2.32 KB
Re: RE: Debugger breaks because of "shared library event"  
Thank you!