From f872d9a30dbb93014baabf48f9d48d20b0220857 Mon Sep 17 00:00:00 2001 From: Juraj Hercek Date: Wed, 9 Jul 2003 21:57:56 +0000 Subject: [PATCH] Modified unhandled exception message to contain also thread identifier. --- win32/except.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/except.c b/win32/except.c index e1f3f58d08..8e6a5bcc60 100644 --- a/win32/except.c +++ b/win32/except.c @@ -233,7 +233,7 @@ static BOOL start_debugger(PEXCEPTION_POINTERS epointers, HANDLE hEvent) static const WCHAR DebuggerW[] = {'D','e','b','u','g','g','e','r',0}; static const WCHAR AutoW[] = {'A','u','t','o',0}; - MESSAGE("wine: Unhandled exception, starting debugger...\n"); + MESSAGE("wine: Unhandled exception (thread %04lx), starting debugger...\n", GetCurrentThreadId()); attr.Length = sizeof(attr); attr.RootDirectory = 0;