I am facing a weird problem.
All the local variables are cleared up, except the literals (_LIT).
AO are working fine.
Scheduler is closed properly, no crash is there.
Condition:
I have used 2 AO and both are added on to Active scheduler.
in Function() of Class A in File 1.
But after returning from call <TRAPD(error,CActiveScheduler::Start());>
void Function()
{
...
...
...
TRAPD(error,CActiveScheduler::Start());
..
..
}
No local variables are shown while Debugging in the Carbide. >
Please help. Tell me the reason and solution for it.
Might be not related to your question but I wonder why did you place CActiveScheduler::Start into TRAP. CActiveScheduler::Start doesn't leave. Whatever function leaves it ends in L such as RunL
Forum posts: 30
Might be not related to your question but I wonder why did you place CActiveScheduler::Start into TRAP. CActiveScheduler::Start doesn't leave. Whatever function leaves it ends in L such as RunL
Forum posts: 28
Thankx for the advice.
I have solved the weird problem