Update contrib.
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0""
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // include/drivers/dma_v2.inl
15 // DMA Framework - Client API v2 definition.
18 // WARNING: This file contains some APIs which are internal and are subject
19 // to change without noticed. Such APIs should therefore not be used
20 // outside the Kernel and Hardware Services package.
27 inline void TDmaChannel::Wait()
29 NKern::ThreadEnterCS();
30 Kern::MutexWait(*iMutex);
33 inline void TDmaChannel::Signal()
35 Kern::MutexSignal(*iMutex);
36 NKern::ThreadLeaveCS();
39 inline void TDmaChannel::Flash()
41 Kern::MutexSignal(*iMutex);
42 Kern::MutexWait(*iMutex);
45 inline TBool TDmaChannel::IsOpened() const
47 __KTRACE_OPT(KDMA, Kern::Printf("Warning: TDmaChannel::IsOpened() is deprecated"));
48 return iController != NULL;
51 inline TBool TDmaChannel::IsQueueEmpty() const
53 return const_cast<TDmaChannel*>(this)->iReqQ.IsEmpty();
56 inline TUint32 TDmaChannel::PslId() const