kernel/eka/kernel/stest.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 26 Jan 2010 13:13:38 +0200
changeset 39 5d2844f35677
parent 0 a41df078684a
child 62 4a8fed1c0ef6
permissions -rw-r--r--
Revision: 201004 Kit: 201004

// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the License "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// e32\kernel\stest.cpp
// 
//

#include <kernel/kern_priv.h>
#include "kern_test.h"

#ifdef _DEBUG
class TTestCallback: public TUserModeCallback
	{
public:
	enum TCallbackType { ESleep, ESpin };

	static void Callback(TAny* aThisPtr, TUserModeCallbackReason aReasonCode);
	TTestCallback(TCallbackType aType);

private:
	TCallbackType iType;
	};

TTestCallback::TTestCallback(TCallbackType aType)
	:	TUserModeCallback(Callback), iType(aType)
	{
	}

void TTestCallback::Callback(TAny* aThisPtr, TUserModeCallbackReason aReasonCode)
	{
	TTestCallback* tc = (TTestCallback*)aThisPtr;
	TCallbackType type = tc->iType;
	Kern::AsyncFree(tc);
	// we leave the CS here so we can be killed
	// we won't ever return normally, so it's ok that it's unbalanced
	NKern::ThreadLeaveCS();
	if (aReasonCode == EUserModeCallbackRun)
		{
		if (type == ESleep)
			NKern::Sleep(KMaxTInt);
		else if (type == ESpin)
			for (;;) {}
		}
	}
#endif


EXPORT_C TInt KernTest::Test(TTestFunction aFunc, TAny* a1, TAny* a2, TAny* a3)
	{
	TInt r = KErrNotSupported;
	(void)aFunc; (void)a1; (void)a2; (void)a3;

#ifdef _DEBUG
	switch(aFunc)
		{
	case EUserModeCallbackSleep:
			{
			// a1 is a DThread*. We add a user mode callback to that thread
			// which sleeps for a long time, effectively blocking the thread
			// indefinately.
			DThread* t = (DThread*)a1;
			NKern::ThreadEnterCS();
			r = NKern::QueueUserModeCallback(&t->iNThread, new TTestCallback(TTestCallback::ESleep));
			NKern::ThreadLeaveCS();
			break;
			}
	case EUserModeCallbackSpin:
			{
			// a1 is a DThread*. We add a user mode callback to that thread
			// which spins in an infinite loop, ensuring that it will be
			// preempted rather than finishing or blocking.
			DThread* t = (DThread*)a1;
			NKern::ThreadEnterCS();
			r = NKern::QueueUserModeCallback(&t->iNThread, new TTestCallback(TTestCallback::ESpin));
			NKern::ThreadLeaveCS();
			break;
			}
		}
#endif

	return r;
	}