KERN EXEC 0 panic at second use of an RObject and not on first

Login to reply to this topic.
Fri, 2005-11-11 15:29
Joined: 2004-12-31
Forum posts: 83
i am getteing a KERN EXEC 0 panic on second use of an RObject and not on first.
i am really confused cause this panic occurs if RObject is uninitialised , in such case it should occur in first case also. see code below. am using a rmUTEX oBJECT.


RMutex iInitParamMutex;

//in ConstructL()
iInitParamMutex.CreateLocal();

///somewhere else

iInitParamMutex.Wait();
iTimeOutTimer->Start(iInitParams->iTimeOutPeriod,
      iInitParams->iTimeOutPeriod ,
      TCallBack(CCommandHandler::TimeOut,this));
iInitParamMutex.Signal();



now panic occurs at iInitParamMutex.Signal();

can any one please give some reasons.
thanks.

warm regards

saurabh

  • Login to reply to this topic.