[Interest] List traffic disappearing?

2021-08-19 Thread Murphy, Sean
I've been on this list (and it's predecessor) for a couple of decades, and have noticed that the traffic on it seems to have slowed significantly over the past few months. Is there somewhere else people are going, like https://forum.qt.io/, or have people just stopped discussing Qt for some othe

Re: [Interest] QThreadPool wait until all queued threads are finished

2021-08-19 Thread Federico Ferri
Why don't you use a QSemaphore? You instantiate it with n=0 (the default constructor). Call sem.acquire(xxx.size()) to wait for all tasks to complete, amnd call sem.release(1) after each task completes. Best regards, Federico Ferri On Tue, Aug 17, 2021 at 9:03 PM Scott Bloom wrote: > Here is