I am using Qt 4.8 on Linux. I have the class ZoneManagerThread
that inherits the class QThread
. In the constructor of this class I am calling the following routine:
this->setObjectName("ZoneManagerThread");
However when I execute ps -eLf
I don't see any thread named ZoneManagerThread
.
What is the problem here? How can I solve this?