Hello,
i have a litte problem with activeobject under symbian on my p800.
I have createt an activeobject, and when i call this activeobject with following code it works:
SetActive();
TRequestStatus* status=&(iStatus);
User::RequestComplete(status,1);
The RunL-Method will be invoked.
But if i run this activeaobject-call in a new thread it doesn't work 😮(
What must i do, to call an activeobject from an other thread.
The thread was created with:
m_connectionThread = new RThread();
res = m_connectionThread->Create(KThreadName,
DeviceCommunication::ReadData,
KDefaultStackSize*2,
NULL,
(TAny*)this,
EOwnerThread);
Thanks for helping, Michael