From 6178459f50811c59e9c54a17804e4057a794896c Mon Sep 17 00:00:00 2001 From: Joerg Mayer Date: Fri, 22 Dec 2000 20:28:46 +0000 Subject: [PATCH] Add %fs info to the critical section timeout message. --- dlls/ntdll/critsection.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/ntdll/critsection.c b/dlls/ntdll/critsection.c index 4793b965061..03d009e0ef8 100644 --- a/dlls/ntdll/critsection.c +++ b/dlls/ntdll/critsection.c @@ -190,11 +190,11 @@ NTSTATUS WINAPI RtlpWaitForCriticalSection( RTL_CRITICAL_SECTION *crit ) DWORD res = WaitForSingleObject( sem, 5000L ); if ( res == WAIT_TIMEOUT ) { - ERR("Critical section %p wait timed out, retrying (60 sec)\n", crit ); + ERR("Critical section %p wait timed out, retrying (60 sec) fs=%04x\n", crit, __get_fs() ); res = WaitForSingleObject( sem, 60000L ); if ( res == WAIT_TIMEOUT && TRACE_ON(relay) ) { - ERR("Critical section %p wait timed out, retrying (5 min)\n", crit ); + ERR("Critical section %p wait timed out, retrying (5 min) fs=%04x\n", crit, __get_fs() ); res = WaitForSingleObject( sem, 300000L ); } } -- 2.11.4.GIT