debugsrv/runmodedebug/tsrc/rm_debug/debug_targets/t_rmdebug_app.h
changeset 56 aa2539c91954
equal deleted inserted replaced
54:a151135b0cf9 56:aa2539c91954
       
     1 // Copyright (c) 2007-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 "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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #ifndef T_RMDEBUG_APP_H
       
    17 #define T_RMDEBUG_APP_H
       
    18 
       
    19 _LIT(KRMDebugTestApplication, "z:\\sys\\bin\\t_rmdebug_app.exe");
       
    20 _LIT(KUserPanic, "UserPanic");
       
    21 const TInt KUserPanicCode = 0x1234ABCD;
       
    22 
       
    23 enum TMyPropertyKeys {EMyPropertyInteger};
       
    24 enum TPropertyTimeKeys {EPropertyTimeOfCrash};
       
    25 
       
    26 
       
    27 // enumeration of functions to call in test debug application
       
    28 enum TDebugFunctionType
       
    29 	{
       
    30 	EDefaultDebugFunction,
       
    31 	EPrefetchAbortFunction,
       
    32 	EUserPanicFunction,
       
    33 	EStackOverflowFunction,
       
    34 	EDataAbortFunction,
       
    35 	EUndefInstructionFunction,
       
    36 	EDataReadErrorFunction,
       
    37 	EDataWriteErrorFunction,
       
    38 	EUserExceptionFunction,
       
    39 	EWaitFiveSecondsThenExit,
       
    40 	ESpinForever,
       
    41 	ESpinForeverWithBreakPoint,
       
    42 	ENormalExit
       
    43 	};
       
    44 
       
    45 #endif //T_RMDEBUG_APP_H
       
    46