[ros-diffs] [cgutman] 36803: - Disable the locking debug prints

cgutman at svn.reactos.org cgutman at svn.reactos.org
Sat Oct 18 05:47:13 CEST 2008


Author: cgutman
Date: Fri Oct 17 22:47:13 2008
New Revision: 36803

URL: http://svn.reactos.org/svn/reactos?rev=36803&view=rev
Log:
 - Disable the locking debug prints

Modified:
    branches/aicom-network-fixes/drivers/network/tcpip/tcpip/lock.c

Modified: branches/aicom-network-fixes/drivers/network/tcpip/tcpip/lock.c
URL: http://svn.reactos.org/svn/reactos/branches/aicom-network-fixes/drivers/network/tcpip/tcpip/lock.c?rev=36803&r1=36802&r2=36803&view=diff
==============================================================================
--- branches/aicom-network-fixes/drivers/network/tcpip/tcpip/lock.c [iso-8859-1] (original)
+++ branches/aicom-network-fixes/drivers/network/tcpip/tcpip/lock.c [iso-8859-1] Fri Oct 17 22:47:13 2008
@@ -50,13 +50,12 @@
 
 UINT TcpipRecursiveMutexEnter( PRECURSIVE_MUTEX RecMutex, BOOL ToWrite ) {
     UINT Ret;
-    TI_DbgPrint(DEBUG_LOCK,("Locking\n"));
+    //TI_DbgPrint(DEBUG_LOCK,("Locking\n"));
     Ret = RecursiveMutexEnter( RecMutex, ToWrite );
-    TI_DbgPrint(DEBUG_LOCK,("Locked\n"));
     return Ret;
 }
 
 VOID TcpipRecursiveMutexLeave( PRECURSIVE_MUTEX RecMutex ) {
-    TI_DbgPrint(DEBUG_LOCK,("Unlocking\n"));
+    //TI_DbgPrint(DEBUG_LOCK,("Unlocking\n"));
     RecursiveMutexLeave( RecMutex );
 }



More information about the Ros-diffs mailing list