Update contrib.
2 * Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "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.
15 * e32\personality\example\personality_int.h
16 * Internal header file for example RTOS personality.
17 * This will be included by the personality layer source files.
19 * WARNING: This file contains some APIs which are internal and are subject
20 * to change without notice. Such APIs should therefore not be used
21 * outside the Kernel and Hardware Services package.
32 #ifndef __PERSONALITY_INT_H__
33 #define __PERSONALITY_INT_H__
35 // NThreadBase member data
36 #define __INCLUDE_NTHREADBASE_DEFINES__
38 #include <personality/example/personality.h>
39 #include <kernel/kern_priv.h>
42 inline NThreadBase::NThreadBase()
46 class PThread : public NThread
51 EWaitMsgQ = NThreadBase::ENumNStates,
55 static TInt Create(PThread*& aThread, const taskinfo* aInfo);
56 static void CreateAll(const taskinfo* aInfo);
57 static void MsgQIDfcFn(TAny*);
58 static void StateHandler(NThread* aThread, TInt aOp, TInt aParam);
59 static void ExceptionHandler(TAny* aContext, NThread* aThread);
61 inline PThread() : iMsgQIDfc(0,0) {} // dummy constructor
62 void ISRPost(msghdr* aM);
63 void Post(msghdr* aFirst, msghdr* aLast);
67 void HandleRelease(TInt aReturnCode);
68 void HandlePriorityChange(TInt aNewPriority);
80 static TInt MaxTaskId;
81 static PThread** TaskTable;
82 static const TUint8 NThreadPriorityTable[MAX_TASK_PRIORITY+1];
83 static const SNThreadHandlers Handlers;
90 SMemBlock* iNext; // only if free block
96 TInt Create(const poolinfo* aInfo);
98 void Free(void* aBlock);
100 SMemBlock* iFirstFree;
107 static void Create(const poolinfo* aInfo);
108 static void* Alloc(size_t aSize);
109 static void Free(void* aBlock);
112 PMemPool iPools[1]; // extend
114 static PMemMgr* TheMgr;
118 class PTimer : public NTimer
122 static void CreateAll();
123 static void NTimerExpired(TAny*);
125 TInt iPeriod; // 0 if single shot
130 static TInt NumTimers;
131 static PTimer* TimerTable;
138 static void CreateAll();
141 void WaitCancel(PThread* aThread);
142 void SuspendWaitingThread(PThread* aThread);
143 void ResumeWaitingThread(PThread* aThread);
144 void ChangeWaitingThreadPriority(PThread* aThread, TInt aNewPriority);
147 static void IDfcFn(TAny*);
153 TPriList<PThread, KNumPriorities> iWaitQ;
155 static TInt NumSemaphores;
156 static PSemaphore* SemaphoreTable;
159 class TPMsgQ : public TDfc
162 TPMsgQ(TDfcFn aFunction, TAny* aPtr, TDfcQue* aDfcQ, TInt aPriority);
165 void CancelReceive();
171 static TPMsgQ* ThePMsgQ;