os/kernelhwsrv/kerneltest/e32test/misc/t_proc3a.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1998-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
// e32test\misc\t_proc3a.cpp
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <e32std.h>
sl@0
    19
#include <e32std_private.h>
sl@0
    20
#include "u32std.h"
sl@0
    21
#include "../misc/prbs.h"
sl@0
    22
sl@0
    23
TUint Seed[2];
sl@0
    24
sl@0
    25
#define PANIC(r) Panic(__LINE__,r)
sl@0
    26
void Panic(TInt aLine, TInt aCode)
sl@0
    27
	{
sl@0
    28
	_LIT(KLitTPROC3A,"T_PROC3A-");
sl@0
    29
	TBuf<16> b=KLitTPROC3A();
sl@0
    30
	b.AppendNum(aLine);
sl@0
    31
	RProcess().Panic(b,aCode);
sl@0
    32
	}
sl@0
    33
sl@0
    34
void StartThread(TInt);
sl@0
    35
sl@0
    36
TInt ThreadFunction(TAny* aParam)
sl@0
    37
	{
sl@0
    38
	TInt p=(TInt)aParam;
sl@0
    39
	FOREVER
sl@0
    40
		{
sl@0
    41
		TProcessPriority pp=(p&1)?EPriorityForeground:EPriorityBackground;
sl@0
    42
		RProcess().SetPriority(pp);
sl@0
    43
		++p;
sl@0
    44
		StartThread(p);
sl@0
    45
		User::AfterHighRes(1);
sl@0
    46
		}
sl@0
    47
	}
sl@0
    48
sl@0
    49
void StartThread(TInt aParam)
sl@0
    50
	{
sl@0
    51
	RThread t;
sl@0
    52
	TInt r=t.Create(KNullDesC(),ThreadFunction,0x1000,NULL,(TAny*)aParam);
sl@0
    53
	if (r!=KErrNone)
sl@0
    54
		PANIC(r);
sl@0
    55
	t.Resume();
sl@0
    56
	t.Close();
sl@0
    57
	}
sl@0
    58
sl@0
    59
GLDEF_C TInt E32Main()
sl@0
    60
	{
sl@0
    61
	TBuf<256> cmd;
sl@0
    62
	User::CommandLine(cmd);
sl@0
    63
	TLex lex(cmd);
sl@0
    64
	TUint param1;
sl@0
    65
	TInt r=lex.Val(param1,EHex);
sl@0
    66
	if (r!=KErrNone)
sl@0
    67
		PANIC(r);
sl@0
    68
	Seed[0]=param1;
sl@0
    69
	Seed[1]=0;
sl@0
    70
	StartThread(0);
sl@0
    71
	TUint x=Random(Seed);
sl@0
    72
	x&=63;
sl@0
    73
	x+=2;
sl@0
    74
	User::AfterHighRes(x);
sl@0
    75
	RProcess().Kill(param1);
sl@0
    76
	return 0;
sl@0
    77
	}