| That check mark for treaded build flips a switch that basically ignores everything that isn't compiled for threading (i.e. all your modules that are only built in non threaded mode). As jsp said, you need to build any modules you're using (in addition to the standard modules that make up BMX that you're using) in threaded mode to get a threaded version of them. If you're using the default IDE, again as JSP said, turn on threaded mode and rebuild your modules. This should build a threaded version (since threaded mode is on) of your mods. 
 Bear in mind, as with all threading projects, that not everything can be legally executed from a child thread, and resources must be share politely if they are going to be accessed by more than 1 thread. Not knowing specifically what you plan, a couple things you might run into are
 1) You can't update the UI, or draw safely from a child thread (graphical commands in bmax are, for all intents, limited to the main execution thread, with the notable exception of managing pixmaps since those are memory resident and are just technically data blocks)
 2) I don't believe the audio systems are thread safe, so accessing them at all may cause some issues (e.g. checking the progress of the audio track)
 3) Threading induces a fair whack of overhead for the application (as it has to manage the threads in addition to executing the code in each). On single core systems this can induce some performance hiccups.
 
 
 |