The threads do share the same memory space (we use pthreads in the player) and this helps quite a bit on the strongarm - no D-cache flush (an expensive operation on the strongarm) is required when context switching to another process/thread with the same memory map.

Hugo