os/kernelhwsrv/kernel/eka/personality/example/personality_int.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of the License "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
* e32\personality\example\personality_int.h
sl@0
    16
* Internal header file for example RTOS personality.
sl@0
    17
* This will be included by the personality layer source files.
sl@0
    18
* 
sl@0
    19
* WARNING: This file contains some APIs which are internal and are subject
sl@0
    20
*          to change without notice. Such APIs should therefore not be used
sl@0
    21
*          outside the Kernel and Hardware Services package.
sl@0
    22
*
sl@0
    23
*/
sl@0
    24
sl@0
    25
sl@0
    26
sl@0
    27
/**
sl@0
    28
 @file
sl@0
    29
 @internalComponent
sl@0
    30
*/
sl@0
    31
sl@0
    32
#ifndef __PERSONALITY_INT_H__
sl@0
    33
#define __PERSONALITY_INT_H__
sl@0
    34
sl@0
    35
// NThreadBase member data
sl@0
    36
#define __INCLUDE_NTHREADBASE_DEFINES__
sl@0
    37
sl@0
    38
#include <personality/example/personality.h>
sl@0
    39
#include <kernel/kern_priv.h>
sl@0
    40
sl@0
    41
// dummy constructor
sl@0
    42
inline NThreadBase::NThreadBase()
sl@0
    43
	{
sl@0
    44
	}
sl@0
    45
sl@0
    46
class PThread : public NThread
sl@0
    47
	{
sl@0
    48
public:
sl@0
    49
	enum PThreadState
sl@0
    50
		{
sl@0
    51
		EWaitMsgQ = NThreadBase::ENumNStates,
sl@0
    52
		EWaitSemaphore
sl@0
    53
		};
sl@0
    54
public:
sl@0
    55
	static TInt Create(PThread*& aThread, const taskinfo* aInfo);
sl@0
    56
	static void CreateAll(const taskinfo* aInfo);
sl@0
    57
	static void MsgQIDfcFn(TAny*);
sl@0
    58
	static void StateHandler(NThread* aThread, TInt aOp, TInt aParam);
sl@0
    59
	static void ExceptionHandler(TAny* aContext, NThread* aThread);
sl@0
    60
public:
sl@0
    61
	inline PThread() : iMsgQIDfc(0,0) {}	// dummy constructor
sl@0
    62
	void ISRPost(msghdr* aM);
sl@0
    63
	void Post(msghdr* aFirst, msghdr* aLast);
sl@0
    64
	msghdr* GetMsg();
sl@0
    65
	void HandleSuspend();
sl@0
    66
	void HandleResume();
sl@0
    67
	void HandleRelease(TInt aReturnCode);
sl@0
    68
	void HandlePriorityChange(TInt aNewPriority);
sl@0
    69
	void HandleTimeout();
sl@0
    70
public:
sl@0
    71
	TInt	iTaskId;
sl@0
    72
	TInt	iSetPriority;
sl@0
    73
	msghdr*	iFirstMsg;
sl@0
    74
	msghdr* iLastMsg;
sl@0
    75
	TDfc	iMsgQIDfc;
sl@0
    76
	msghdr* iISRFirstMsg;
sl@0
    77
	msghdr* iISRLastMsg;
sl@0
    78
public:
sl@0
    79
	static TInt NumTasks;
sl@0
    80
	static TInt MaxTaskId;
sl@0
    81
	static PThread** TaskTable;
sl@0
    82
	static const TUint8 NThreadPriorityTable[MAX_TASK_PRIORITY+1];
sl@0
    83
	static const SNThreadHandlers Handlers;
sl@0
    84
	};
sl@0
    85
sl@0
    86
class PMemPool;
sl@0
    87
struct SMemBlock
sl@0
    88
	{
sl@0
    89
	PMemPool*	iPool;
sl@0
    90
	SMemBlock*	iNext;		// only if free block
sl@0
    91
	};
sl@0
    92
sl@0
    93
class PMemPool
sl@0
    94
	{
sl@0
    95
public:
sl@0
    96
	TInt Create(const poolinfo* aInfo);
sl@0
    97
	void* Alloc();
sl@0
    98
	void Free(void* aBlock);
sl@0
    99
public:
sl@0
   100
	SMemBlock*	iFirstFree;
sl@0
   101
	size_t		iBlockSize;
sl@0
   102
	};
sl@0
   103
sl@0
   104
class PMemMgr
sl@0
   105
	{
sl@0
   106
public:
sl@0
   107
	static void Create(const poolinfo* aInfo);
sl@0
   108
	static void* Alloc(size_t aSize);
sl@0
   109
	static void Free(void* aBlock);
sl@0
   110
public:
sl@0
   111
	TInt iPoolCount;
sl@0
   112
	PMemPool iPools[1];		// extend
sl@0
   113
public:
sl@0
   114
	static PMemMgr* TheMgr;
sl@0
   115
	};
sl@0
   116
sl@0
   117
sl@0
   118
class PTimer : public NTimer
sl@0
   119
	{
sl@0
   120
public:
sl@0
   121
	PTimer();
sl@0
   122
	static void CreateAll();
sl@0
   123
	static void NTimerExpired(TAny*);
sl@0
   124
public:
sl@0
   125
	TInt		iPeriod;	// 0 if single shot
sl@0
   126
	TAny*		iCookie;
sl@0
   127
	PThread*	iThread;
sl@0
   128
	TUint		iExpiryCount;
sl@0
   129
public:
sl@0
   130
	static TInt NumTimers;
sl@0
   131
	static PTimer* TimerTable;
sl@0
   132
	};
sl@0
   133
sl@0
   134
sl@0
   135
class PSemaphore
sl@0
   136
	{
sl@0
   137
public:
sl@0
   138
	static void CreateAll();
sl@0
   139
public:
sl@0
   140
	PSemaphore();
sl@0
   141
	void WaitCancel(PThread* aThread);
sl@0
   142
	void SuspendWaitingThread(PThread* aThread);
sl@0
   143
	void ResumeWaitingThread(PThread* aThread);
sl@0
   144
	void ChangeWaitingThreadPriority(PThread* aThread, TInt aNewPriority);
sl@0
   145
	void Signal();
sl@0
   146
	void ISRSignal();
sl@0
   147
	static void IDfcFn(TAny*);
sl@0
   148
public:
sl@0
   149
	TInt iCount;
sl@0
   150
	TInt iISRCount;
sl@0
   151
	TDfc iIDfc;
sl@0
   152
	SDblQue iSuspendedQ;
sl@0
   153
	TPriList<PThread, KNumPriorities> iWaitQ;
sl@0
   154
public:
sl@0
   155
	static TInt NumSemaphores;
sl@0
   156
	static PSemaphore* SemaphoreTable;
sl@0
   157
	};
sl@0
   158
sl@0
   159
class TPMsgQ : public TDfc
sl@0
   160
	{
sl@0
   161
public:
sl@0
   162
	TPMsgQ(TDfcFn aFunction, TAny* aPtr, TDfcQue* aDfcQ, TInt aPriority);
sl@0
   163
	void Receive();
sl@0
   164
	msghdr* Get();
sl@0
   165
	void CancelReceive();
sl@0
   166
public:
sl@0
   167
	msghdr* iFirstMsg;
sl@0
   168
	msghdr* iLastMsg;
sl@0
   169
	TBool iReady;
sl@0
   170
public:
sl@0
   171
	static TPMsgQ* ThePMsgQ;
sl@0
   172
	};
sl@0
   173
sl@0
   174
sl@0
   175
#endif