commsfwutils/commsbufs/mbufmgrimpl/inc/MBufTimer.h
changeset 0 dfb7c4ff071f
equal deleted inserted replaced
-1:000000000000 0:dfb7c4ff071f
       
     1 // Copyright (c) 1997-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 #if !defined(__MBufTimer_h__)
       
    17 #define __MBufTimer_h__
       
    18 
       
    19 /**
       
    20 @internalTechnology
       
    21 */
       
    22 const TUint KMBufWatchDogTime = 1000000;
       
    23 
       
    24 //
       
    25 // MBUF TIMER
       
    26 //
       
    27 class MBufTimer
       
    28 /**
       
    29 @internalTechnology
       
    30 */
       
    31 	{
       
    32 public:
       
    33 	static void Queue(TTimeIntervalMicroSeconds32 aTimeInMicroSeconds,TDeltaTimerEntry& aTimer);
       
    34 	static void Remove(TDeltaTimerEntry& aTimer);
       
    35 	};
       
    36 
       
    37 const TInt KMbufManTimerGranularity = 15500;
       
    38 
       
    39 enum TMBufMgrActivePriority
       
    40 	{
       
    41 	EMBufMgrTimerPriority=50,
       
    42 	};
       
    43 
       
    44 #endif