crashanalysercmd/Libraries/Engine/CrashDebuggerLib/Structures/MessageQueue/MsgQueuePoolInfo.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 using CrashDebuggerLib.Structures.KernelObjects;
       
    22 
       
    23 namespace CrashDebuggerLib.Structures.MessageQueue
       
    24 {
       
    25     public class MsgQueuePoolInfo
       
    26     {
       
    27         #region Constructors
       
    28         public MsgQueuePoolInfo()
       
    29         {
       
    30         }
       
    31         #endregion
       
    32 
       
    33         #region API
       
    34         #endregion
       
    35 
       
    36         #region Properties
       
    37         public uint Start
       
    38         {
       
    39             get { return iStart; }
       
    40             set { iStart = value; }
       
    41         }
       
    42 
       
    43         public uint End
       
    44         {
       
    45             get { return iEnd; }
       
    46             set { iEnd = value; }
       
    47         }
       
    48         #endregion
       
    49 
       
    50         #region Internal methods
       
    51         #endregion
       
    52 
       
    53         #region Internal constants
       
    54         #endregion
       
    55 
       
    56         #region From System.Object
       
    57         public override string ToString()
       
    58         {
       
    59             return base.ToString();
       
    60         }
       
    61         #endregion
       
    62 
       
    63         #region Data members
       
    64         private uint iStart = 0;
       
    65         private uint iEnd = 0;
       
    66         #endregion
       
    67     }
       
    68 }