Update contrib.
1 // Copyright (c) 2008-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 the License "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.
26 #ifndef __NO_ALLOC_DECLARATIONS__
27 #ifdef __KERNEL_MODE__
28 #define __ALLOCATOR Kern
30 #define __ALLOCATOR User
33 GLDEF_C TAny *operator new(TUint aSize) __NO_THROW
35 // The global new operator.
41 return __ALLOCATOR::Alloc(aSize);
45 GLDEF_C TAny *operator new[](TUint aSize) __NO_THROW
50 return __ALLOCATOR::Alloc(aSize);
54 GLDEF_C TAny *operator new(TUint aSize, TUint anExtraSize) __NO_THROW
56 // Allocate the requested size plus the extra.
60 return malloc(aSize+anExtraSize);
62 return __ALLOCATOR::Alloc(aSize+anExtraSize);
66 GLDEF_C void operator delete(TAny *aPtr) __NO_THROW
68 // The replacement delete operator.
74 __ALLOCATOR::Free(aPtr);
78 GLDEF_C void operator delete[](TAny * aPtr) __NO_THROW
83 __ALLOCATOR::Free(aPtr);
87 #endif // #ifndef __NWDL_H__