author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
sl@0 | 1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
sl@0 | 2 |
// All rights reserved. |
sl@0 | 3 |
// This component and the accompanying materials are made available |
sl@0 | 4 |
// under the terms of the License "Eclipse Public License v1.0" |
sl@0 | 5 |
// which accompanies this distribution, and is available |
sl@0 | 6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html". |
sl@0 | 7 |
// |
sl@0 | 8 |
// Initial Contributors: |
sl@0 | 9 |
// Nokia Corporation - initial contribution. |
sl@0 | 10 |
// |
sl@0 | 11 |
// Contributors: |
sl@0 | 12 |
// |
sl@0 | 13 |
// Description: |
sl@0 | 14 |
// e32\include\nwdl.h |
sl@0 | 15 |
// |
sl@0 | 16 |
// |
sl@0 | 17 |
|
sl@0 | 18 |
#ifndef __NWDL_H__ |
sl@0 | 19 |
#define __NWDL_H__ |
sl@0 | 20 |
|
sl@0 | 21 |
/** |
sl@0 | 22 |
@file |
sl@0 | 23 |
@internalTechnology |
sl@0 | 24 |
*/ |
sl@0 | 25 |
|
sl@0 | 26 |
#ifndef __NO_ALLOC_DECLARATIONS__ |
sl@0 | 27 |
#ifdef __KERNEL_MODE__ |
sl@0 | 28 |
#define __ALLOCATOR Kern |
sl@0 | 29 |
#else |
sl@0 | 30 |
#define __ALLOCATOR User |
sl@0 | 31 |
#endif |
sl@0 | 32 |
|
sl@0 | 33 |
GLDEF_C TAny *operator new(TUint aSize) __NO_THROW |
sl@0 | 34 |
// |
sl@0 | 35 |
// The global new operator. |
sl@0 | 36 |
// |
sl@0 | 37 |
{ |
sl@0 | 38 |
#ifdef __USE_MALLOC__ |
sl@0 | 39 |
return malloc(aSize); |
sl@0 | 40 |
#else |
sl@0 | 41 |
return __ALLOCATOR::Alloc(aSize); |
sl@0 | 42 |
#endif |
sl@0 | 43 |
} |
sl@0 | 44 |
|
sl@0 | 45 |
GLDEF_C TAny *operator new[](TUint aSize) __NO_THROW |
sl@0 | 46 |
{ |
sl@0 | 47 |
#ifdef __USE_MALLOC__ |
sl@0 | 48 |
return malloc(aSize); |
sl@0 | 49 |
#else |
sl@0 | 50 |
return __ALLOCATOR::Alloc(aSize); |
sl@0 | 51 |
#endif |
sl@0 | 52 |
} |
sl@0 | 53 |
|
sl@0 | 54 |
GLDEF_C TAny *operator new(TUint aSize, TUint anExtraSize) __NO_THROW |
sl@0 | 55 |
// |
sl@0 | 56 |
// Allocate the requested size plus the extra. |
sl@0 | 57 |
// |
sl@0 | 58 |
{ |
sl@0 | 59 |
#ifdef __USE_MALLOC__ |
sl@0 | 60 |
return malloc(aSize+anExtraSize); |
sl@0 | 61 |
#else |
sl@0 | 62 |
return __ALLOCATOR::Alloc(aSize+anExtraSize); |
sl@0 | 63 |
#endif |
sl@0 | 64 |
} |
sl@0 | 65 |
|
sl@0 | 66 |
GLDEF_C void operator delete(TAny *aPtr) __NO_THROW |
sl@0 | 67 |
// |
sl@0 | 68 |
// The replacement delete operator. |
sl@0 | 69 |
// |
sl@0 | 70 |
{ |
sl@0 | 71 |
#ifdef __USE_MALLOC__ |
sl@0 | 72 |
free(aPtr); |
sl@0 | 73 |
#else |
sl@0 | 74 |
__ALLOCATOR::Free(aPtr); |
sl@0 | 75 |
#endif |
sl@0 | 76 |
} |
sl@0 | 77 |
|
sl@0 | 78 |
GLDEF_C void operator delete[](TAny * aPtr) __NO_THROW |
sl@0 | 79 |
{ |
sl@0 | 80 |
#ifdef __USE_MALLOC__ |
sl@0 | 81 |
free(aPtr); |
sl@0 | 82 |
#else |
sl@0 | 83 |
__ALLOCATOR::Free(aPtr); |
sl@0 | 84 |
#endif |
sl@0 | 85 |
} |
sl@0 | 86 |
#endif |
sl@0 | 87 |
#endif // #ifndef __NWDL_H__ |