FreeImage not thread safe

BlitzMax Forums/Brucey's Modules/FreeImage not thread safe

ima747(Posted 2010) [#1]
Was poking back through freeimage today, specifically looking at the que system you added in an attempt to fix some of the memory problems I was having. It's not thread safe, in that if freeimage is being used from more than 1 thread at a time it's possible to modify/access the que from 2 places at once.

I would recommend taking it back out as if someone is experiencing memory issues like I am they will have to make workarounds like I have which are external to freeimage, so the que should not truly be needed. Ultimately the problems I'm seeing come from the garbage collector exacerbated by the size of the data freeimage is working with, not freeimage itself (I think)...