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/netw... ============================================================================== --- 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 ); }