crashanalysercmd/Libraries/Engine/CrashDebuggerLib/Structures/UserContextTable/UserContextType.cs
changeset 0 818e61de6cd1
equal deleted inserted replaced
-1:000000000000 0:818e61de6cd1
       
     1 /*
       
     2 * Copyright (c) 2004-2008 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 using System;
       
    19 using System.Collections.Generic;
       
    20 using System.Text;
       
    21 
       
    22 namespace CrashDebuggerLib.Structures.UserContextTable
       
    23 {
       
    24     [System.ComponentModel.TypeConverter( typeof( SymbianParserLib.TypeConverters.SymbianEnumConverter ) )]
       
    25     public enum TUserContextType
       
    26     {
       
    27         EContextNone = 0,                       /**< Thread has no user context */
       
    28         EContextException = 1,	    	        /**< Hardware exception while in user mode */
       
    29         EContextUndefined = 2,
       
    30         EContextUserInterrupt =3,       	    /**< Preempted by interrupt taken in user mode */
       
    31         EContextUserInterruptDied = 4,          /**< Killed while preempted by interrupt taken in user mode */
       
    32         EContextSvsrInterrupt1 = 5,             /**< Preempted by interrupt taken in executive call handler */
       
    33         EContextSvsrInterrupt1Died = 6,         /**< Killed while preempted by interrupt taken in executive call handler */
       
    34         EContextSvsrInterrupt2 = 7,             /**< Preempted by interrupt taken in executive call handler */
       
    35         EContextSvsrInterrupt2Died = 8,         /**< Killed while preempted by interrupt taken in executive call handler */
       
    36         EContextWFAR = 9,                       /**< Blocked on User::WaitForAnyRequest() */
       
    37         EContextWFARDied = 10,                  /**< Killed while blocked on User::WaitForAnyRequest() */
       
    38         EContextExec = 11,				        /**< Slow executive call */
       
    39         EContextKernel = 12				        /**< Kernel side context (for kernel threads) */
       
    40     }
       
    41 }
       
    42