diff -r 000000000000 -r dfb7c4ff071f serialserver/c32serialserver/INC/cs_thread.inl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/serialserver/c32serialserver/INC/cs_thread.inl Thu Dec 17 09:22:25 2009 +0200 @@ -0,0 +1,62 @@ +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "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: +// CC32WorkerThread +// +// + + +inline CC32Dealer* CC32WorkerThread::Dealer() const + { + return iDealer; + } + +inline CC32Player* CC32WorkerThread::Player() const + { + return iPlayer; + } + +inline CommsFW::TWorkerId CC32WorkerThread::WorkerId() const + { + return iWorkerId; + } + +inline CC32Dealer& CC32WorkerThread::DealerByRef() const + { + __ASSERT_DEBUG(iDealer,Fault(EBadState,_L8("CC32WorkerThread::DealerByRef iDealer is Null, panicking."))); + return *iDealer; + } + +inline TBool CC32WorkerThread::DealerShutdownComplete() const + { + return iDealerShutdownComplete; + } + + +inline TBool CC32WorkerThread::PlayerShutdownComplete() const + { + return iPlayerShutdownComplete; + } + +#ifdef _DEBUG +inline RAllocator::TAllocFail CC32WorkerThread::AllocFailType() const + { + return iFailType; + } +inline TInt CC32WorkerThread::AllocFailRate() const + { + return iFailRate; + } +#endif + +