kernel/eka/drivers/debug/rmdebug/d_rmd_breakpoints_debug.inl
changeset 259 57b9594f5772
parent 247 d8d70de2bd36
child 260 a1a318fd91af
child 266 0008ccd16016
--- a/kernel/eka/drivers/debug/rmdebug/d_rmd_breakpoints_debug.inl	Wed Aug 18 11:08:29 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,39 +0,0 @@
-// Copyright (c) 2010 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:
-//
-
-#include "debug_logging.h"
-
-// Print breakpoints disabled for stepping
-inline void D_RMD_Breakpoints::print_BreakpointsDisabledForStep()
-	{
-	for (TInt i = 0; i < iBreakPointList.Count(); i++)
-		{
-		if(iBreakPointList[i].iDisabledForStep)
-			{
-				LOG_MSG2("Breakpoint disabled for stepping: iBreakPointList[%d]", i);
-				LOG_MSG4("iBreakId = %x, iId = %d, iAddress = %x", iBreakPointList[i].iBreakId, iBreakPointList[i].iId, iBreakPointList[i].iAddress );
-			}
-		}
-	}
-
-// Print breakpoint list
-inline void D_RMD_Breakpoints::print_BreakpointsList()
-	{
-	for (TInt i = NUMBER_OF_TEMP_BREAKPOINTS; i < iBreakPointList.Count(); i++)
-		{
-			LOG_MSG2("Breakpoint list: iBreakPointList[%d]", i);
-			LOG_MSG4("iBreakId = %x, iId = %d, iAddress = %x", iBreakPointList[i].iBreakId, iBreakPointList[i].iId, iBreakPointList[i].iAddress );
-		}
-	}