Problem using eachin in callbacks?

BlitzMax Forums/BlitzMax Programming/Problem using eachin in callbacks?

Who was John Galt?(Posted 2006) [#1]
I'm writing a callback to play some streaming sound in
FMOD, and as soon as i use an eachin loop in the callback (even if its empty) I get an unhandled memory exception. Any ideas why? My suspicion is it may be some type of GC issue.


AntonyWells(Posted 2006) [#2]
blitzs code is not thread safe so anything that uses the gc etc in a remote thread ends up throwing a spanner in the works.


Who was John Galt?(Posted 2006) [#3]
Damn- OK thanks Ant.