Hi,
in the multi-threaded app I am porting to Symbian using Open C, I have an object that uses an RFile to read/write data to file. This object is supposed to be accessed from different threads (it is threadsafe), however there is the issue that apparently RFile objects can only be accessed within one thread only. As soon as another thread uses the RFile object, I am getting a KERN-EXEC 0.
Is there any way to share the RFile object between different threads? I can't use Active Objects.