tags:

views:

52

answers:

1

Is there a way to get all running threads in Qt application from QApplication object?

+1  A: 

Not through the standard API, but you can give all threads the same parent (e.g. qApp) and then use the children method.

e8johan