Your code seems to be endless loop, your call sequence goes something like:
Qt Code:
: : -> runThread -> doWork -> run -> emits completed (connected to jobDone) -> jobDone -> runThread -> doWork : :To copy to clipboard, switch view to plain text mode
Maybe because of this you reach some system resource limit (heap/stack) in this recursive function call sequence and that causes your code to crash at the point you mentioned.
I have 8GB RAM in Ubuntu and I reach ~9500 (runcount) after crash, at that point my function call "tree" is 66609 function deep!




Reply With Quote



Bookmarks