When I tried running my program from gdb I got an error about program type, when I attached gdb to a running instance no widgets were responsive
Once you attached GDB to a running instance, the debugger will pause the process to let you set up things like breakpoints and watchdogs. You need to type `continue` in the GDB console to resume the program.
Ciao,
Emmanuele.
I've now got this dreaded message.
Is there any way to find out which line is triggering it?
Export `G_DEBUG=fatal-criticals` and then run under GDB to see which part of the code is passing an invalid/finalised object around.
Ciao,
Emmanuele.
--