Update contrib.
1 // Copyright (c) 1994-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.
18 #include <kernel/kern_priv.h>
20 _LIT(KLitKernHeap,"KernHeap");
22 RHeapK::RHeapK(TInt aInitialSize)
23 : RHeap(aInitialSize, 0, EFalse)
27 TInt RHeapK::Compress()
34 Fault(KErrNotSupported);
37 TInt RHeapK::AllocSize(TInt& aTotalAllocSize) const
39 (void)aTotalAllocSize;
40 Fault(KErrNotSupported);
44 TInt RHeapK::Available(TInt& aBiggestBlock) const
47 Fault(KErrNotSupported);
51 TInt RHeapK::CreateMutex()
53 DMutex*& m = *(DMutex**)&iLock;
54 return K::MutexCreate(m, KLitKernHeap, NULL, EFalse, KMutexOrdKernelHeap);
57 RHeapK* RHeapK::FixedHeap(TAny* aBase, TInt aInitialSize)
59 // Create a kernel fixed heap.
63 __ASSERT_ALWAYS(aInitialSize>KMinHeapSize, K::Fault(K::ETHeapMaxLengthNegative));
64 return new(aBase) RHeapK(aInitialSize);
67 void RHeapK::CheckThreadState()
69 // Check that the kernel is not locked and the thread is unkillable
75 __ASSERT_NO_FAST_MUTEX;
79 void RHeapK::Fault(TInt aFault)
81 Kern::Fault("KERN-HEAP", aFault);
84 #if defined(__HEAP_MACHINE_CODED__) && !defined(_DEBUG)
85 GLDEF_C void RHeapK_PanicBadAllocatedCellSize()
87 K::Fault(K::EKHeapBadAllocatedCellSize);
90 GLDEF_C void RHeapK_PanicBadNextCell()
92 K::Fault(K::EKHeapFreeBadNextCell);
95 GLDEF_C void RHeapK_PanicBadPrevCell()
97 K::Fault(K::EKHeapFreeBadPrevCell);
100 GLDEF_C void RHeapK_PanicBadCellAddress()
102 K::Fault(K::EKHeapBadCellAddress);