Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
24 #ifndef __RM_DEBUG_KERNELDRIVER_H__
25 #define __RM_DEBUG_KERNELDRIVER_H__
27 #include <rm_debug_api.h>
30 Used to store a value read from or written to an ARM register
32 typedef TUint32 T4ByteRegisterValue;
36 Provides static methods for accessing the information stored in a TRegisterInfo
42 static TBool IsCoreReg(const Debug::TRegisterInfo aRegister);
43 static TBool IsCoproReg(const Debug::TRegisterInfo aRegister);
44 static TUint32 GetCoreRegId(const Debug::TRegisterInfo aRegister);
45 static TUint32 GetCRm(const Debug::TRegisterInfo aRegister);
46 static TUint32 GetCRn(const Debug::TRegisterInfo aRegister);
47 static TUint32 GetOpcode1(const Debug::TRegisterInfo aRegister);
48 static TUint32 GetOpcode2(const Debug::TRegisterInfo aRegister);
49 static TUint32 GetCoproNum(const Debug::TRegisterInfo aRegister);
53 Identify whether aRegister is a core register
54 @param aRegister register ID to analyse
55 @return ETrue if core register, EFalse otherwise
57 inline TBool Register::IsCoreReg(const Debug::TRegisterInfo aRegister)
59 return ((aRegister & 0xff) == 0x0);
63 Identify whether aRegister is a coprocessor register
64 @param aRegister register ID to analyse
65 @return ETrue if coprocessor register, EFalse otherwise
67 inline TBool Register::IsCoproReg(const Debug::TRegisterInfo aRegister)
69 return ((aRegister & 0xff) == 0x1);
73 Get the ID of the core register
74 @param aRegister register ID to analyse
75 @return ID of the core register
77 inline TUint32 Register::GetCoreRegId(const Debug::TRegisterInfo aRegister)
79 return ((aRegister >> 8) & 0xff);
83 Get the CRm value of a coprocessor register
84 @param aRegister register ID to analyse
85 @return the CRm value of a coprocessor register
87 inline TUint32 Register::GetCRm(const Debug::TRegisterInfo aRegister)
89 return ((aRegister >> 16) & 0xf);
93 Get the CRm value of a coprocessor register
94 @param aRegister register ID to analyse
95 @return the CRm value of a coprocessor register
97 inline TUint32 Register::GetCRn(const Debug::TRegisterInfo aRegister)
99 return ((aRegister >> 20) & 0xf);
103 Get the Opcode1 value of a coprocessor register
104 @param aRegister register ID to analyse
105 @return the Opcode1 value of a coprocessor register
107 inline TUint32 Register::GetOpcode1(const Debug::TRegisterInfo aRegister)
109 return ((aRegister >> 24) & 0x8);
113 Get the Opcode2 value of a coprocessor register
114 @param aRegister register ID to analyse
115 @return the Opcode2 value of a coprocessor register
117 inline TUint32 Register::GetOpcode2(const Debug::TRegisterInfo aRegister)
119 return ((aRegister >> 27) & 0x8);
123 Get the coprocessor number of a coprocessor register
124 @param aRegister register ID to analyse
125 @return the coprocessor number of a coprocessor register
127 inline TUint32 Register::GetCoproNum(const Debug::TRegisterInfo aRegister)
129 return ((aRegister >> 8) & 0xff);
133 // class TCapsRM_DebugDriver
135 class TCapsRM_DebugDriver
142 Stores listings information for passing between the DSS and the kernel driver
144 class TListInformation
147 inline TListInformation(const Debug::TListId aType=(Debug::TListId)NULL, const Debug::TListScope aListScope=(Debug::TListScope)NULL, TDes8* aBuffer=NULL, TUint32* aDataSize=NULL, TUint64 aTargetId=0)
149 iListScope(aListScope),
151 iDataSize(aDataSize),
152 iTargetId(aTargetId) {};
154 Debug::TListId iType;
155 Debug::TListScope iListScope;
162 Data structure to hold information to the crash flash
163 (Possibly: Could be expanded to hold on configuration data too)
168 inline TFlashInfo(TUint32 aPos, TUint32* aSize, TDes8* aData)
178 // class TRM_DebugMemoryInfo
180 class TRM_DebugMemoryInfo
184 inline TRM_DebugMemoryInfo(const TUint32 aAddress, const TUint32 aLength, TDesC8 *aData)
185 : iAddress(aAddress),
199 This class is only used by TRK phase 1 functions.
201 @see TRM_DebugRegisterInformation which offers similar storage suitable for use
202 with the TRK pahse 2 API.
204 class TRM_DebugRegisterInfo
208 inline TRM_DebugRegisterInfo(const TInt16 aFirstRegister, const TInt16 aLastRegister, TDesC8 *aValues)
209 : iFirstRegister(aFirstRegister),
210 iLastRegister(aLastRegister),
215 TInt16 iFirstRegister;
216 TInt16 iLastRegister;
221 Structure used to store information about registers
223 class TRM_DebugRegisterInformation
227 inline TRM_DebugRegisterInformation(const TDes8 *aRegisterIds=NULL, TDes8 *aRegisterValues=NULL, TDes8 *aRegisterFlags=NULL)
228 : iRegisterIds(aRegisterIds),
229 iRegisterValues(aRegisterValues),
230 iRegisterFlags(aRegisterFlags) {};
234 const TDes8* iRegisterIds;
235 TDes8* iRegisterValues;
236 TDes8* iRegisterFlags;
240 // class TRM_DebugTaskInfo
242 class TRM_DebugTaskInfo
246 inline TRM_DebugTaskInfo(TUint32 aOtherId)
249 iPriority(0) { iName.FillZ(); };
256 TBuf8<KMaxName> iName;
260 // class TRM_DebugStepInfo
262 class TRM_DebugStepInfo
266 inline TRM_DebugStepInfo(const TUint32 aStartAddress, const TUint32 aStopAddress, const TBool aStepInto)
267 : iStartAddress(aStartAddress),
268 iStopAddress(aStopAddress),
269 iStepInto(aStepInto) {};
273 TUint32 iStartAddress;
274 TUint32 iStopAddress;
280 // class TRM_DebugDriverInfo
282 class TRM_DebugDriverInfo
286 TUint32 iPanic1Address;
287 TUint32 iPanic2Address;
288 TUint32 iException1Address;
289 TUint32 iException2Address;
290 TUint32 iLibraryLoadedAddress;
291 TUint32 iUserLibraryEnd;
296 // class TRM_DebugProcessInfo
298 class TRM_DebugProcessInfo
302 inline TRM_DebugProcessInfo(TUint32 *aCodeAddress, TUint32 *aDataAddress)
303 : iCodeAddress(aCodeAddress),
304 iDataAddress(aDataAddress) {};
308 TUint32* iCodeAddress;
309 TUint32* iDataAddress;
313 // class TRM_DebugEventActionInfo
315 class TRM_DebugEventActionInfo
318 inline TRM_DebugEventActionInfo(TUint32 aEvent, TUint32 aAction, TUint64 aAgentId)
321 iAgentId(aAgentId) {};
329 // class TRM_DebugEventInfo
331 class TRM_DebugEventInfo
334 inline TRM_DebugEventInfo(TDesC8& aProcessName, TUint32& aBufSize)
335 : iProcessName(aProcessName),
336 iBufSize(aBufSize) {};
339 TDesC8& iProcessName;
344 // class TRMD_DebugAgentId
346 class TRM_DebugAgentId
349 inline TRM_DebugAgentId(TUint64 aAgentId)
350 : iAgentId(aAgentId) {};
357 // Class TRMD_DebugCancelInfo
359 class TRMD_DebugCancelInfo
362 inline TRMD_DebugCancelInfo(TUint32 aCancelRequest,TDesC8& aProcessName, TUint64 aAgentId)
363 : iCancelRequest(aCancelRequest),
364 iProcessName(aProcessName),
365 iAgentId(aAgentId) {};
367 inline TRMD_DebugCancelInfo(void)
374 TUint32 iCancelRequest;
375 TBuf8<KMaxName> iProcessName;
382 TBuf8<KMaxName> iTargetProcessName;
383 TUint64 iDebugAgentProcessId;
393 inline TSetBreakInfo(Debug::TBreakId* aBreakId,
396 Debug::TArchitectureMode aMode,
397 TBool aThreadSpecific)
398 : iBreakId(aBreakId),
402 iThreadSpecific(aThreadSpecific) {};
404 inline TSetBreakInfo(void)
405 : iBreakId((Debug::TBreakId*)0),
408 iMode(Debug::EArmMode),
409 iThreadSpecific(ETrue) {};
413 Debug::TBreakId* iBreakId;
416 Debug::TArchitectureMode iMode;
417 TBool iThreadSpecific;
423 class TModifyBreakInfo
427 inline TModifyBreakInfo(Debug::TBreakId aBreakId,\
428 const TUint64 aThreadId,\
429 const TUint32 aAddress,\
430 const Debug::TArchitectureMode aMode)
431 : iBreakId(aBreakId),
432 iThreadId(aThreadId),
437 const Debug::TBreakId iBreakId;
438 const TUint64 iThreadId;
439 const TUint32 iAddress;
440 const Debug::TArchitectureMode iMode;
446 class TModifyProcessBreakInfo
450 inline TModifyProcessBreakInfo(Debug::TBreakId aBreakId,\
451 const TUint64 aProcessId,\
452 const TUint32 aAddress,\
453 const Debug::TArchitectureMode aMode)
454 : iBreakId(aBreakId),
455 iProcessId(aProcessId),
460 const Debug::TBreakId iBreakId;
461 const TUint64 iProcessId;
462 const TUint32 iAddress;
463 const Debug::TArchitectureMode iMode;
473 inline TGetBreakInfo(Debug::TBreakId aBreakId,\
476 Debug::TArchitectureMode& aMode,
477 TBool& aThreadSpecific)
478 : iBreakId(aBreakId),
482 iThreadSpecific(&aThreadSpecific) {};
484 inline TGetBreakInfo()
485 : iBreakId((Debug::TBreakId)0),
487 iAddress((TUint32*)0),
488 iMode((Debug::TArchitectureMode*)0),
489 iThreadSpecific((TBool*)0) {};
492 const Debug::TBreakId iBreakId;
495 Debug::TArchitectureMode* iMode;
496 TBool* iThreadSpecific;
500 // class RRM_DebugDriver
502 class RRM_DebugDriver : public RBusLogicalChannel
508 EControlSetBreak = 0,
512 EControlSuspendThread,
513 EControlResumeThread,
517 EControlReadRegisters,
518 EControlWriteRegisters,
519 EControlGetStaticLibraryInfo,
520 EControlGetDebugFunctionalityBufSize,
521 EControlGetDebugFunctionality,
522 EControlReadRegistersLegacy,
523 EControlWriteRegistersLegacy,
524 EControlGetMemoryOperationMaxBlockSize,
525 EControlAttachProcess,
526 EControlDetachProcess,
528 EControlSetEventAction,
531 EControlIsDebuggable,
533 EControlModifyProcessBreak,
538 ERequestGetEvent=0x0, ERequestGetEventCancel=0x1
543 inline TInt Open(const TRM_DebugDriverInfo aDriverInfo);
545 inline TInt SetBreak(Debug::TBreakId &aBreakId,const TUint32 aThreadId, const TUint32 aAddress, const Debug::TArchitectureMode aThumbMode );
546 inline TInt SetProcessBreak(Debug::TBreakId &aBreakId,const TUint32 aProcessId, const TUint32 aAddress, const Debug::TArchitectureMode aThumbMode );
548 inline TInt ClearBreak(const TInt32 aBreakId);
550 inline TInt ModifyBreak(const Debug::TBreakId aBreakId, const TUint32 aThreadId, const TUint32 aAddress, const Debug::TArchitectureMode aArchitectureMode );
551 inline TInt ModifyProcessBreak(const Debug::TBreakId aBreakId, const TUint32 aProcessId, const TUint32 aAddress, const Debug::TArchitectureMode aArchitectureMode );
553 inline TInt BreakInfo(const Debug::TBreakId aBreakId, TUint64& aId, TUint32& aAddress, Debug::TArchitectureMode& aMode, TBool& aThreadSpecific);
555 inline TInt SuspendThread(const TUint32 aThreadId);
556 inline TInt ResumeThread(const TUint32 aThreadId);
557 inline TInt StepRange(const TUint32 aThreadId, const TUint32 aStartAddress, const TUint32 aStopAddress, TBool aStepInto);
558 inline TInt ReadMemory(const TUint32 aThreadId, const TUint32 aAddress, const TUint32 aLength, TDes8 &aData);
559 inline TInt WriteMemory(const TUint32 aThreadId, const TUint32 aAddress, const TUint32 aLength, const TDesC8 &aData);
560 inline TInt ReadRegisters(const TUint32 aThreadId, const TDes8 &aRegisterIds, TDes8 &aRegisterValues, TDes8 &aRegisterFlags);
561 inline TInt WriteRegisters(const TUint32 aThreadId, const TDes8 &aRegisterIds, const TDes8 &aRegisterValues, TDes8 &aRegisterFlags);
562 inline TInt ReadRegisters(const TUint32 aThreadId, const TInt32 aFirstRegister, const TInt32 aLastRegister, TDes8 &aValues);
563 inline TInt WriteRegisters(const TUint32 aThreadId, const TInt32 aFirstRegister, const TInt32 aLastRegister, TDesC8 &aValues);
564 inline void GetEvent(TDesC8& aProcessName, TUint64 aAgentId, TRequestStatus &aStatus, Debug::TEventInfo &aEventInfo);
565 inline void CancelGetEvent(TDesC8& aProcessName, TUint64 aAgentId);
566 // inline TInt GetProcessInfo(const TInt aIndex, TRM_DebugTaskInfo &aInfo);
567 // inline TInt GetThreadInfo(const TInt aIndex, TRM_DebugTaskInfo &aInfo);
568 inline TInt GetStaticLibraryInfo(const TInt aIndex, Debug::TEventInfo &aInfo);
569 inline TInt GetDebugFunctionalityBufSize(TUint32 &aBufSize);
570 inline TInt GetDebugFunctionality(TDes8& aDebugFunctionality);
571 inline TInt GetMemoryOperationMaxBlockSize(TUint32 &aMaxSize);
572 inline TInt AttachProcess(TDesC8& aProcessName, TUint64 aAgentId);
573 inline TInt DetachProcess(TDesC8& aProcessName, TUint64 aAgentId);
574 inline TInt DetachAgent(TUint64 aAgentId);
575 inline TInt SetEventAction(TDesC8& aProcessName, Debug::TEventType aEvent, Debug::TKernelEventAction aEventAction, TUint64 aAgentId);
576 inline TInt GetList(const Debug::TListId aType, const Debug::TListScope aListScope, const TUint64 aTargetId, const TUint64 aDebugProcessId, TDes8& aBuffer, TUint32& aDataSize);
577 inline TInt Step(const TUint32 aThreadId, const TUint32 aNumSteps);
578 inline TInt IsDebuggable(const TUint32 aProcessId);
579 inline TInt KillProcess(const TUint32 aProcessId, const TInt32 aReason);
582 _LIT(KRM_DebugDriverName,"RM Debug Driver");
584 //priority set equal to that of KDfcThread0Priority defined in e32/kernel/sinit.cpp
585 const TInt KRmDebugDriverThreadPriority = 27;
587 // Version information
588 const TInt KMajorVersionNumber=2;
589 const TInt KMinorVersionNumber=1;
590 const TInt KBuildVersionNumber=0;
593 inline TInt RRM_DebugDriver::Open(const TRM_DebugDriverInfo aDriverInfo)
596 buf.Append((TUint8*)&aDriverInfo.iPanic1Address, 4);
597 buf.Append((TUint8*)&aDriverInfo.iPanic2Address, 4);
598 buf.Append((TUint8*)&aDriverInfo.iException1Address, 4);
599 buf.Append((TUint8*)&aDriverInfo.iException2Address, 4);
600 buf.Append((TUint8*)&aDriverInfo.iLibraryLoadedAddress, 4);
601 buf.Append((TUint8*)&aDriverInfo.iUserLibraryEnd, 4);
604 return DoCreate(KRM_DebugDriverName, TVersion(KMajorVersionNumber, KMinorVersionNumber, KBuildVersionNumber), KNullUnit, NULL, &buf);
606 return DoCreate(KRM_DebugDriverName, TVersion(KMajorVersionNumber, KMinorVersionNumber, KBuildVersionNumber), NULL, KNullUnit, NULL, &buf);
610 inline TInt RRM_DebugDriver::SetBreak(Debug::TBreakId &aBreakId, const TUint32 aThreadId, const TUint32 aAddress, const Debug::TArchitectureMode aMode )
612 TSetBreakInfo info(&aBreakId, aThreadId, aAddress, aMode, ETrue);
613 return DoSvControl(EControlSetBreak, reinterpret_cast<TAny*>(&info),0);
615 inline TInt RRM_DebugDriver::SetProcessBreak(Debug::TBreakId &aBreakId, const TUint32 aProcessId, const TUint32 aAddress, const Debug::TArchitectureMode aMode )
617 TSetBreakInfo info(&aBreakId, aProcessId, aAddress, aMode, EFalse);
618 return DoSvControl(EControlSetBreak, reinterpret_cast<TAny*>(&info),0);
621 inline TInt RRM_DebugDriver::ClearBreak(const Debug::TBreakId aBreakId)
623 return DoSvControl(EControlClearBreak, reinterpret_cast<TAny*>(aBreakId), 0);
626 inline TInt RRM_DebugDriver::ModifyBreak(const Debug::TBreakId aBreakId, const TUint32 aThreadId, const TUint32 aAddress, const Debug::TArchitectureMode aMode)
628 TModifyBreakInfo info(aBreakId, aThreadId, aAddress, aMode);
629 return DoControl(EControlModifyBreak, reinterpret_cast<TAny*>(&info), 0);
632 inline TInt RRM_DebugDriver::ModifyProcessBreak(const Debug::TBreakId aBreakId, const TUint32 aProcessId, const TUint32 aAddress, const Debug::TArchitectureMode aMode)
634 TModifyProcessBreakInfo info(aBreakId, aProcessId, aAddress, aMode);
635 return DoControl(EControlModifyProcessBreak, reinterpret_cast<TAny*>(&info), 0);
638 inline TInt RRM_DebugDriver::BreakInfo(const Debug::TBreakId aBreakId, TUint64& aId, TUint32& aAddress, Debug::TArchitectureMode& aMode, TBool& aThreadSpecific)
640 TGetBreakInfo info(aBreakId, aId, aAddress, aMode, aThreadSpecific);
641 return DoControl(EControlBreakInfo, reinterpret_cast<TAny*>(&info), 0);
644 inline TInt RRM_DebugDriver::SuspendThread(const TUint32 aThreadId)
646 return DoControl(EControlSuspendThread, reinterpret_cast<TAny*>(aThreadId));
649 inline TInt RRM_DebugDriver::ResumeThread(const TUint32 aThreadId)
651 return DoSvControl(EControlResumeThread, reinterpret_cast<TAny*>(aThreadId));
654 inline TInt RRM_DebugDriver::StepRange(const TUint32 aThreadId, const TUint32 aStartAddress, const TUint32 aStopAddress, TBool aStepInto)
656 TRM_DebugStepInfo info(aStartAddress, aStopAddress, aStepInto);
657 return DoSvControl(EControlStepRange, reinterpret_cast<TAny*>(aThreadId), (TAny*)&info);
660 inline TInt RRM_DebugDriver::ReadMemory(const TUint32 aThreadId, const TUint32 aAddress, const TUint32 aLength, TDes8 &aData)
662 TRM_DebugMemoryInfo info(aAddress, aLength, &aData);
663 return DoControl(EControlReadMemory, reinterpret_cast<TAny*>(aThreadId), (TAny*)&info);
666 inline TInt RRM_DebugDriver::WriteMemory(const TUint32 aThreadId, const TUint32 aAddress, const TUint32 aLength, const TDesC8 &aData)
668 TRM_DebugMemoryInfo info(aAddress, aLength, (TDesC8*)&aData);
669 return DoControl(EControlWriteMemory, reinterpret_cast<TAny*>(aThreadId), (TAny*)&info);
672 inline TInt RRM_DebugDriver::ReadRegisters(const TUint32 aThreadId, const TDes8 &aRegisterIds, TDes8 &aRegisterValues, TDes8 &aRegisterFlags)
674 TRM_DebugRegisterInformation info(&aRegisterIds, &aRegisterValues, &aRegisterFlags);
675 return DoControl(EControlReadRegisters, reinterpret_cast<TAny*>(aThreadId), (TAny*)&info);
678 inline TInt RRM_DebugDriver::WriteRegisters(const TUint32 aThreadId, const TDes8 &aRegisterIds, const TDes8 &aRegisterValues, TDes8 &aRegisterFlags)
680 TRM_DebugRegisterInformation info(&aRegisterIds, (TDes8*)&aRegisterValues, &aRegisterFlags);
681 return DoControl(EControlWriteRegisters, reinterpret_cast<TAny*>(aThreadId), (TAny*)&info);
684 inline TInt RRM_DebugDriver::ReadRegisters(const TUint32 aThreadId, const TInt32 aFirstRegister, const TInt32 aLastRegister, TDes8 &aValues)
686 TRM_DebugRegisterInfo info(aFirstRegister, aLastRegister, &aValues);
687 return DoControl(EControlReadRegistersLegacy, reinterpret_cast<TAny*>(aThreadId), (TAny*)&info);
690 inline TInt RRM_DebugDriver::WriteRegisters(const TUint32 aThreadId, const TInt32 aFirstRegister, const TInt32 aLastRegister, TDesC8 &aValues)
692 TRM_DebugRegisterInfo info(aFirstRegister, aLastRegister, &aValues);
693 return DoControl(EControlWriteRegistersLegacy, reinterpret_cast<TAny*>(aThreadId), (TAny*)&info);
696 inline void RRM_DebugDriver::GetEvent(TDesC8& aProcessName, TUint64 aAgentId, TRequestStatus &aStatus, Debug::TEventInfo &aEventInfo)
698 // temporary object not needed beyond the DoRequest call
699 TEventMetaData eventMetaData;
700 eventMetaData.iTargetProcessName.Copy(aProcessName);
701 eventMetaData.iDebugAgentProcessId = aAgentId;
702 DoRequest(ERequestGetEvent, aStatus, (TAny*)&aEventInfo, (TAny*)&eventMetaData);
705 inline void RRM_DebugDriver::CancelGetEvent(TDesC8& aProcessName, TUint64 aAgentId)
707 TRMD_DebugCancelInfo info(ERequestGetEventCancel,aProcessName,aAgentId);
708 DoCancel(reinterpret_cast<TInt>(&info));
711 inline TInt RRM_DebugDriver::GetStaticLibraryInfo(const TInt aIndex, Debug::TEventInfo &aInfo)
713 return DoControl(EControlGetStaticLibraryInfo, reinterpret_cast<TAny*>(aIndex), (TAny*)&aInfo);
716 inline TInt RRM_DebugDriver::GetDebugFunctionalityBufSize(TUint32 &aBufSize)
718 return DoControl(EControlGetDebugFunctionalityBufSize, reinterpret_cast<TAny*>(&aBufSize));
721 inline TInt RRM_DebugDriver::GetDebugFunctionality(TDes8& aDebugFunctionality)
723 return DoControl(EControlGetDebugFunctionality,reinterpret_cast<TAny*>(&aDebugFunctionality));
726 inline TInt RRM_DebugDriver::GetMemoryOperationMaxBlockSize(TUint32 &aMaxSize)
728 return DoControl(EControlGetMemoryOperationMaxBlockSize, reinterpret_cast<TAny*>(&aMaxSize));
731 inline TInt RRM_DebugDriver::AttachProcess(TDesC8& aProcessName, TUint64 aAgentId)
733 TRM_DebugAgentId info(aAgentId);
734 return DoControl(EControlAttachProcess,reinterpret_cast<TAny*>(&aProcessName),reinterpret_cast<TAny*>(&info));
737 inline TInt RRM_DebugDriver::DetachProcess(TDesC8& aProcessName, TUint64 aAgentId)
739 TRM_DebugAgentId info(aAgentId);
740 return DoControl(EControlDetachProcess,reinterpret_cast<TAny*>(&aProcessName),reinterpret_cast<TAny*>(&info));
743 inline TInt RRM_DebugDriver::DetachAgent(TUint64 aAgentId)
745 TRM_DebugAgentId info(aAgentId);
746 return DoControl(EControlDetachAgent,reinterpret_cast<TAny*>(&info),0);
749 inline TInt RRM_DebugDriver::SetEventAction(TDesC8& aProcessName, Debug::TEventType aEvent, Debug::TKernelEventAction aEventAction, TUint64 aAgentId)
751 TRM_DebugEventActionInfo info (aEvent,aEventAction, aAgentId);
752 return DoControl(EControlSetEventAction,reinterpret_cast<TAny*>(&aProcessName),(TAny*)&info);
755 inline TInt RRM_DebugDriver::GetList(const Debug::TListId aType, const Debug::TListScope aListScope, const TUint64 aTargetId, const TUint64 aDebugProcessId, TDes8& aBuffer, TUint32& aDataSize)
757 TListInformation info(aType, aListScope, &aBuffer, &aDataSize, aTargetId);
758 return DoControl(EControlGetList, (TAny*)&info);
761 inline TInt RRM_DebugDriver::Step(const TUint32 aThreadId, const TUint32 aNumSteps)
763 return DoControl(EControlStep,reinterpret_cast<TAny*>(aThreadId),reinterpret_cast<TAny*>(aNumSteps));
766 inline TInt RRM_DebugDriver::IsDebuggable(const TUint32 aProcessId)
768 return DoControl(EControlIsDebuggable,reinterpret_cast<TAny*>(aProcessId),NULL);
771 inline TInt RRM_DebugDriver::KillProcess(const TUint32 aProcessId, const TInt32 aReason)
773 return DoControl(EControlKillProcess,reinterpret_cast<TAny*>(aProcessId),reinterpret_cast<TAny*>(aReason));
776 #endif // __RM_DEBUG_KERNELDRIVER_H__