Re: GDB is preventing my catch blocks in my C++ program
Claude Robitaille via Gdb <[email protected]>
| Newsgroups | gmane.comp.gdb.devel |
|---|---|
| Message-ID | <DS7PR07MB768627AD9817A6F52AD9B599F7EC9@DS7PR07MB7686.namprd07.prod.outlook.com> |
To include the list... ________________________________ From: Claude Robitaille <[email protected]> Sent: April 12, 2022 9:28 PM To: Simon Marchi <[email protected]> Subject: Re: GDB is preventing my catch blocks in my C++ program Thanks Simon for the quick reply. I can single step the program up to the point where an exception is thrown. And I did set a breakpoint inside the catch statement but no success (earlier breakpoint in the code are working as expected). Here is what appears on the console (yes, it is Windows) Listening on port 2345 Remote debugging from host 192.168.70.8, port 34542 Error while doing a GetTokenInformation - Unknown errorLOGGER NOT INITIALIZED: ********************************************************************************************* terminate called after throwing an instance of 'sf::context::tGlobal::envVariableMissing' Child exited with status 3 The string that starts with Error blah blah is my own std::cout earlier in the program. Same with the line with the ****** and the LOGGER xxxx is from the g3log library in my program. The exception instance is definitely what my program is throwing. I guess Child exited is from gdb. ________________________________ From: Simon Marchi <[email protected]> Sent: April 12, 2022 9:17 PM To: Claude Robitaille <[email protected]>; [email protected] <[email protected]> Subject: Re: GDB is preventing my catch blocks in my C++ program On 2022-04-12 20:27, Claude Robitaille via Gdb wrote: > Hi all, > > I am having an issue with exception in C++. When I run my program outside gdb (gsbserver actually) all is good and my exceptions are properly catched. > > However, when running un gdbserver I get: > "terminate called after throwing an instance of XXXX" > > The actuall catch statmeent is catch (...) so it is a catch all. > > I obvisouly suspect that, somehow, gdbserver is preventing the normal try/catch/throw machinery to work as it should. The "terminate called..." string is most likely coming form the language library. > > Background > I am crosscompiling with mingw-w64 on Ubuntu. The compiler is 9.3 while both gdb and gdbserver are 9.1 I run gdb under eclipse > > I run under WIndows 10 > > I spend the whole afternoon on Google but all I found are cases where the programmer did not properly coded the catch (or something similar), which, indeed, is not my problem since all is good when running outside of gdb. > > Not sure how to tackle this one!! Just to try to get the obvious out of the way first... are you sure it's not GDBserver itself crashing? GDBserver is a C++ program, so it's possible that an exception is thrown and not caught in it. Can you paste the logs of a session that shows your problem? GDBserver and your program are running on Windows IIUC? Simon