perfsrv/memspy/memspy_plat/memspy_api/include/memspy/driver/kernel/MemSpyDriverPanics.h
changeset 48 516af714ebb4
child 52 c2f44e33b468
equal deleted inserted replaced
45:185201be11b0 48:516af714ebb4
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MEMSPYDRIVERPANICS_H
       
    19 #define MEMSPYDRIVERPANICS_H
       
    20 
       
    21 // System includes
       
    22 #include <e32cmn.h>
       
    23 
       
    24 
       
    25 /**
       
    26  * Mem spy driver client panic category
       
    27  */
       
    28 _LIT( KMemSpyClientPanic, "MemSpyDriver" );
       
    29 
       
    30 
       
    31 /**
       
    32  * Panic codes
       
    33  */
       
    34 enum TMemSpyDriverPanic
       
    35 	{
       
    36 	EPanicBadDescriptor = 0,
       
    37 	EPanicHeapWalkPending,
       
    38 	EPanicHeapWalkNotInitialised,
       
    39     EPanicThreadsInProcessNotSuspended,
       
    40     EPanicWrongProcessSuspended,
       
    41     EPanicAttemptingToSuspendMultipleProcesses,
       
    42     EPanicAttemptingToResumeNonSuspendedProcess,
       
    43     EPanicHeapInfoNotYetSeeded,
       
    44     EPanicHeapChunkAlreadyCloned,
       
    45     EPanicForcedKill,
       
    46     EPanicForcedTerminate,
       
    47     EPanicForcedPanic,
       
    48     EPanicKernelHeapDataInitError,
       
    49     EPanicKernelHeapDataFetchError,
       
    50     EPanicHeapFreeCellStreamNotClosed,
       
    51     EPanicHeapFreeCellStreamNotOpen
       
    52 	};
       
    53 
       
    54 
       
    55 	
       
    56 #endif