Update contrib.
1 // Copyright (c) 2007-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __WSMEMMGR_H__
17 #define __WSMEMMGR_H__
21 class CWsMemoryManager: public CBase, private RAllocator
24 static CWsMemoryManager * NewLC();
28 void DisableReserve();
31 static CWsMemoryManager * Static();
34 void SetFailNextRetry();
38 // implementing RAllocator
39 TAny* Alloc(TInt aSize);
40 void Free(TAny* aPtr);
41 TAny* ReAlloc(TAny* aPtr, TInt aSize, TInt aMode);
42 TInt AllocLen(const TAny* aCell) const;
45 TInt AllocSize(TInt& aTotalAllocSize) const;
46 TInt Available(TInt& aBiggestBlock) const;
47 TInt DebugFunction(TInt aFunc, TAny* a1, TAny* a2);
51 static CWsMemoryManager * iStatic;
56 TBool iReserveEnabled;
60 TTime iCurrentBurstStart;
61 TInt iCurrentBurstReleaseCount;
64 #endif //__WSMEMMGR_H__