Re: [Interest] Qtconcurrent::run priority

2019-12-30 Thread Thiago Macieira
On Monday, 30 December 2019 03:11:22 -03 Ramakanth Kesireddy wrote: > I mean the function being run in a separate thread using Qtconcurrent::run > is auto deleted from QThreadpool? QtConcurrent::run does not take an object pointer. Therefore, there's nothing whose ownership could be transferred.

Re: [Interest] Qtconcurrent::run priority

2019-12-29 Thread Ramakanth Kesireddy
I mean the function being run in a separate thread using Qtconcurrent::run is auto deleted from QThreadpool? On Mon, 30 Dec, 2019, 05:52 Thiago Macieira, wrote: > On Saturday, 28 December 2019 08:21:39 -03 Ramakanth Kesireddy wrote: > > Whether the thread created using Qtconcurrent::run

Re: [Interest] Qtconcurrent::run priority

2019-12-29 Thread Thiago Macieira
On Saturday, 28 December 2019 08:21:39 -03 Ramakanth Kesireddy wrote: > Whether the thread created using Qtconcurrent::run returning QFuture(status > monitored using QFutureWatcher) needs to be deleted explicitly by the > application or it is auto deleted when there are no references?

Re: [Interest] Qtconcurrent::run priority

2019-12-28 Thread Ramakanth Kesireddy
Whether the thread created using Qtconcurrent::run returning QFuture(status monitored using QFutureWatcher) needs to be deleted explicitly by the application or it is auto deleted when there are no references? Best Regards, Ramakanth On Wed, 25 Dec, 2019, 21:29 Thiago Macieira, wrote: > On

Re: [Interest] Qtconcurrent::run priority

2019-12-26 Thread Ramakanth Kesireddy
Thanks a lot for your response. On Wed, 25 Dec, 2019, 21:29 Thiago Macieira, wrote: > On Monday, 23 December 2019 23:34:49 -03 Ramakanth Kesireddy wrote: > > If the function is being run in a thread using Qtconcurrent::run spawned > > from another thread(pthread), could you please let me know

Re: [Interest] Qtconcurrent::run priority

2019-12-25 Thread Thiago Macieira
On Monday, 23 December 2019 23:34:49 -03 Ramakanth Kesireddy wrote: > If the function is being run in a thread using Qtconcurrent::run spawned > from another thread(pthread), could you please let me know if the default > priority of the thread is QThread::NormalPriority or >

[Interest] Qtconcurrent::run priority

2019-12-23 Thread Ramakanth Kesireddy
Hi All, If the function is being run in a thread using Qtconcurrent::run spawned from another thread(pthread), could you please let me know if the default priority of the thread is QThread::NormalPriority or QThread::InheritPriority? Thanks and Regards, Ramakanth