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 /** Deletes the specified DBase derived object.
22 @param aPtr Pointer to the DBase derived object to be deleted.
24 @pre Calling thread must be in a critical section.
25 @pre Interrupts must be enabled.
26 @pre Kernel must be unlocked.
27 @pre No fast mutex can be held.
28 @pre Call in a thread context.
29 @pre Can be used in a device driver.
31 EXPORT_C void DBase::Delete(DBase* aPtr)
33 CHECK_PRECONDITIONS(MASK_THREAD_CRITICAL,"DBase::Delete");
38 /** Allocates the object from the kernel heap and then initialises its contents
41 @param aSize The size of the derived class. This parameter is specified
42 implicitly by C++ in all circumstances in which a derived class
45 @return An untyped pointer to the allocated object.
47 @pre Calling thread must be in a critical section.
48 @pre Interrupts must be enabled.
49 @pre Kernel must be unlocked.
50 @pre No fast mutex can be held.
51 @pre Call in a thread context.
52 @pre Can be used in a device driver.
54 EXPORT_C TAny* DBase::operator new(TUint aSize) __NO_THROW
56 CHECK_PRECONDITIONS(MASK_THREAD_CRITICAL,"DBase::operator new(TUint aSize)");
57 return Kern::AllocZ(aSize);
61 /** Allocates the object from the kernel heap with additional memory and then
62 initialises its contents to binary zeros.
64 @param aSize The size of the derived class. This parameter is specified
65 implicitly by C++ in all circumstances in which a derived class
68 @param anExtraSize Indicates additional size beyond the end of the base class.
70 @return An untyped pointer to the allocated object.
72 @pre Calling thread must be in a critical section.
73 @pre Interrupts must be enabled.
74 @pre Kernel must be unlocked.
75 @pre No fast mutex can be held.
76 @pre Call in a thread context.
77 @pre Can be used in a device driver.
79 EXPORT_C TAny* DBase::operator new(TUint aSize, TUint anExtraSize) __NO_THROW
81 CHECK_PRECONDITIONS(MASK_THREAD_CRITICAL,"DBase::operator new(TUint aSize, TUint anExtraSize)");
83 return Kern::AllocZ(aSize);
86 _LIT(KLitKernLib,"KernLib");
87 void KL::Panic(KL::TKernLibPanic aPanic)
89 Kern::PanicCurrentThread(KLitKernLib,aPanic);
93 /** Default constructor for version type
96 EXPORT_C TVersion::TVersion()
97 : iMajor(0),iMinor(0),iBuild(0)
102 Compares two versions and returns true if the test version is less than the
105 Version information is encapsulated by a TVersion type object and consists of
106 a major version number, a minor version number and a build number.
108 The function returns true if one of the following conditions is true:
110 1. the test major version is strictly less than the current major version
112 2. the test major version is equal to the current major version and the test
113 minor version is less than or equal to the current minor version.
115 If neither condition is true, the function returns false.
117 @param aCurrent A reference to the current version against which aRequested
119 @param aRequested A reference to the test version to be compared
122 @return True, if one or both conditions are true. False otherwise.
124 EXPORT_C TBool Kern::QueryVersionSupported(const TVersion &aCurrent,const TVersion &aRequested)
127 if (aRequested.iMajor<aCurrent.iMajor || (aRequested.iMajor==aCurrent.iMajor && aRequested.iMinor<=aCurrent.iMinor))
133 /** Constructor for version type.
135 @param aMajor The major version number (0-127).
136 @param aMajor The minor version number (0-127).
137 @param aMajor The build number (0-32767).
139 EXPORT_C TVersion::TVersion(TInt aMajor,TInt aMinor,TInt aBuild)
140 : iMajor((TInt8)aMajor), iMinor((TInt8)aMinor), iBuild((TInt16)aBuild)
144 /** Converts a version type to a text string.
146 The string is of the form X.YY(Z)
147 where X is major version number, Y is minor and Z is build number.
149 @return The string in a TBuf class.
151 EXPORT_C TVersionName TVersion::Name() const
156 v.Append(TChar('.'));
157 v.AppendNumFixedWidth(iMinor,EDecimal,2);
158 v.Append(TChar('('));
160 v.Append(TChar(')'));