sl@0: // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of the License "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // f32test\demandpaging\t_ramstress.h sl@0: // sl@0: // sl@0: sl@0: #ifndef _T_RAMSTRESS_H_ sl@0: #define _T_RAMSTRESS_H_ sl@0: sl@0: #include sl@0: #ifndef __KERNEL_MODE__ sl@0: #include sl@0: #endif sl@0: sl@0: _LIT(KRamStressTestLddName,"D_RAMSTRESS"); sl@0: sl@0: class RRamStressTestLdd : public RBusLogicalChannel sl@0: { sl@0: public: sl@0: enum TControl sl@0: { sl@0: EDoMovePagesInZone, sl@0: EDoSetDebugFlag, sl@0: EDoSetEndFlag, sl@0: }; sl@0: sl@0: #ifndef __KERNEL_MODE__ sl@0: public: sl@0: inline TInt Open() sl@0: { return DoCreate(KRamStressTestLddName,TVersion(),KNullUnit,NULL,NULL,EOwnerProcess,ETrue); } sl@0: inline TInt DoSetDebugFlag(TInt aState) sl@0: { return DoControl(EDoSetDebugFlag,(TAny*)aState, (TAny*)NULL); } sl@0: inline TInt DoSetEndFlag(TInt aState) sl@0: { return DoControl(EDoSetEndFlag,(TAny*)aState, (TAny*)NULL); } sl@0: inline TInt DoMovePagesInZone(TUint aZoneIndex) sl@0: { return DoControl(EDoMovePagesInZone,(TAny*)aZoneIndex, (TAny*)NULL); } sl@0: #endif sl@0: }; sl@0: sl@0: sl@0: #endif //_T_RAMSTRESS_H_ sl@0: