Heap in threads
Unsolved
General and Desktop
-
@StudyQt1 said in Heap in threads:
I am having some heap issues, I don't know if using heap to read is the proper way?
what exactly are you trying to do ?
-
@StudyQt1
In addition to to @J-Hilk's highly pertinent question(! --- who knows what "some heap issues" might mean?), where is your whateverQFile qfile
declared and opened? Are you using a singleQFile
instance shared across all threads (=> problems)? Or, does each thread have its ownQFile
and do its own opening of perhaps the same file (=> why?).