tags:

views:

90

answers:

1

Hi, I modified Qt's broadcast sender example so that it has ten threads and in each thread it starts a timer, but only timer of the first thread is triggered. How can I have one timer running for each thread?

A: 

Timers only work if the thread has an event loop.

Rich Sadowsky