Update contrib.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 #include "glibbackend.h"
22 #include "glibbackendinternal.h"
25 RHeap* privateHeap = NULL;
28 void InitGLIBHeap(RHeap*& aPrivateHeap)
30 //Create the Heap for all the libraries (local to this process)
31 //Increase the Heap Size to 1 MB
32 const TInt KMaxHeapSize = 1048576 ; // 1MB
33 aPrivateHeap = UserHeap::ChunkHeap(NULL, KMinHeapSize, KMaxHeapSize);
36 _LIT(KEGlibInit, "GLIB BACKEND");
37 User::Panic(KEGlibInit, KErrNoMemory);
41 EXPORT_C void *pAlloc(size_t nBytes)
45 InitGLIBHeap(privateHeap);
47 return privateHeap->AllocZ(nBytes);