kernel/eka/memmodel/epoc/flexible/mmu/mpagecleaner.cpp
changeset 109 b3a1d9898418
parent 102 ef2a444a7410
child 152 657f875b013e
--- a/kernel/eka/memmodel/epoc/flexible/mmu/mpagecleaner.cpp	Mon May 03 13:47:38 2010 +0300
+++ b/kernel/eka/memmodel/epoc/flexible/mmu/mpagecleaner.cpp	Fri May 14 17:13:29 2010 +0300
@@ -1,7 +1,7 @@
 // Copyright (c) 2007-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"
+// 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".
 //
@@ -30,8 +30,8 @@
 
 const TInt KThreadPriority = 25;
 
-/// The length of time the paging device is idle before we decide to use it for cleaning dirty
-/// pages, in milliseconds.
+// The length of time the paging device is idle before we decide to use it for cleaning dirty
+// pages, in milliseconds.
 const TInt KIdleDelayInMillis = 2;
 
 class DPageCleaner
@@ -63,13 +63,13 @@
 
 	// All state below is accessed with the MmuLock held.
 
-	/// Whether the paging device is currently idle.
+	// Whether the paging device is currently idle.
 	TBool iPagingDeviceIdle;
 
-	/// Whether the paging device has been idle for longer than the wait period.
+	// Whether the paging device has been idle for longer than the wait period.
 	TBool iIdleForAWhile;
 	
-	/// Whether the page cleaner is currently running.
+	// Whether the page cleaner is currently running.
 	TBool iCleaningInProgress;	
 	};