On Thu, May 22, 2014 at 08:37:22AM +0200, Álvaro del Barrio wrote: > Hi, > > Since "threadnames" (python command) in gdbbridge.py is unnecessari to > display the names of the threads of the remote application, I can not find > where Qt Creator passes these threadnames to gdb for displaying... Which > method or file does it?
Qt Creator does not touch that, it only reads and presents what GDB produces. Your application sets the threadnames, either direct using PR_SET_NAME, or implicitly if it's a QThread from it's objectName, or if that's empty from the metaobject classname. Andre' > > _______________________________________________ Qt-creator mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/qt-creator
