projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c5a2cdd
)
[NTOSKRNL]
author
Thomas Faber
<thomas.faber@reactos.org>
Wed, 20 Jun 2012 08:32:35 +0000
(08:32 +0000)
committer
Thomas Faber
<thomas.faber@reactos.org>
Wed, 20 Jun 2012 08:32:35 +0000
(08:32 +0000)
- tcpip is called too often. Don't spam the debug log.
See issue #7129 for more details.
svn path=/trunk/; revision=56757
reactos/ntoskrnl/ke/wait.c
patch
|
blob
|
history
diff --git
a/reactos/ntoskrnl/ke/wait.c
b/reactos/ntoskrnl/ke/wait.c
index
1edf2ba
..
2a24c00
100644
(file)
--- a/
reactos/ntoskrnl/ke/wait.c
+++ b/
reactos/ntoskrnl/ke/wait.c
@@
-596,8
+596,8
@@
KeWaitForMultipleObjects(IN ULONG Count,
(!Timeout || Timeout->QuadPart != 0))
{
/* HACK: tcpip is broken and waits with spinlocks acquired (bug #7129) */
- DPRINT
1
("%s called at DISPATCH_LEVEL with non-zero timeout!\n",
-
__FUNCTION__);
+ DPRINT("%s called at DISPATCH_LEVEL with non-zero timeout!\n",
+ __FUNCTION__);
}
else
ASSERT(KeGetCurrentIrql() <= DISPATCH_LEVEL);