0

How to set stack size for thread run with QtConcurrent?

krzych
  • 2,126
  • 7
  • 31
  • 50

1 Answers1

0

This is not actually possible (there is a change request for this https://bugreports.qt-project.org/browse/QTBUG-2568). You have to use QThread instead, and call setStackSize() before starting your thread.

Archie
  • 2,644
  • 21
  • 21