crashanalysercmd/Libraries/Engine/CrashItemLib/Crash/Threads/CIThreadRegisterListCollection.cs
changeset 0 818e61de6cd1
equal deleted inserted replaced
-1:000000000000 0:818e61de6cd1
       
     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 using System;
       
    18 using System.Text;
       
    19 using System.Text.RegularExpressions;
       
    20 using System.Collections.Generic;
       
    21 using CrashItemLib.Crash;
       
    22 using CrashItemLib.Crash.Base;
       
    23 using CrashItemLib.Crash.Threads;
       
    24 using CrashItemLib.Crash.Registers;
       
    25 using SymbianStructuresLib.Arm.Registers;
       
    26 
       
    27 namespace CrashItemLib.Crash.Threads
       
    28 {
       
    29 	public class CIThreadRegisterListCollection : CIRegisterListCollection
       
    30 	{
       
    31 		#region Constructors
       
    32         public CIThreadRegisterListCollection( CIThread aThread )
       
    33             : base( aThread.Container, aThread  )
       
    34 		{
       
    35             Add( new CIRegisterList( Container, aThread, TArmRegisterBank.ETypeUser ) );
       
    36             Add( new CIRegisterList( Container, aThread, TArmRegisterBank.ETypeSupervisor ) );
       
    37             Add( new CIRegisterList( Container, aThread, TArmRegisterBank.ETypeException ) );
       
    38             Add( new CIRegisterList( Container, aThread, TArmRegisterBank.ETypeCoProcessor ) );
       
    39         }
       
    40 		#endregion
       
    41 
       
    42         #region API
       
    43         #endregion
       
    44 
       
    45         #region Properties
       
    46         public CIThread OwningThread
       
    47         {
       
    48             get { return (CIThread) base.Parent; }
       
    49         }
       
    50         #endregion
       
    51 
       
    52         #region Internal methods
       
    53         #endregion
       
    54 
       
    55         #region Data members
       
    56         #endregion
       
    57     }
       
    58 }