kernel/eka/kernel/win32/cache.cpp
author William Roberts <williamr@symbian.org>
Mon, 25 Jan 2010 14:06:44 +0000
changeset 37 a9bf1d2c555e
parent 0 a41df078684a
child 148 31ea0f8e3c99
permissions -rw-r--r--
Merge FCL changes (FLM for building kernel\eka\rombuild-style ROM images)

// Copyright (c) 1998-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\win32\cache.cpp
// 
//

#include <win32.h>
#include <kernel/cache.h>

EXPORT_C void Cache::IMB_Range(TLinAddr, TUint)
	{
	}

EXPORT_C void Cache::SyncMemoryBeforeDmaWrite(TLinAddr, TUint)
	{
	}

EXPORT_C void Cache::SyncMemoryBeforeDmaRead(TLinAddr, TUint)
	{
	}

EXPORT_C void Cache::SyncMemoryAfterDmaRead(TLinAddr, TUint)
	{
	}

EXPORT_C void Cache::AtomicSyncMemory()
	{
	}

EXPORT_C void Cache::SyncMemoryBeforeDmaWrite(TLinAddr, TUint, TUint32)
	{
	}

EXPORT_C void Cache::SyncMemoryBeforeDmaRead(TLinAddr, TUint, TUint32)
	{
	}

EXPORT_C void Cache::SyncMemoryAfterDmaRead(TLinAddr, TUint, TUint32)
	{
	}

EXPORT_C TInt Cache::GetThresholds(TCacheThresholds&, TUint)
	{
	return KErrNotSupported;
	}

EXPORT_C TInt Cache::SetThresholds(const TCacheThresholds&, TUint)
	{
	return KErrNotSupported;
	}

EXPORT_C TUint Cache::DmaBufferAlignment()
	{
	return 1;
	}