Sebastian Lackner : ntdll: Convert an ERR to a WARN when wait is triggered while destroying threadpool object.

Alexandre Julliard julliard at winehq.org
Fri Aug 19 08:19:05 CDT 2016


Module: wine
Branch: master
Commit: d085042ab95c62d98276893db16ce16508fc518a
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=d085042ab95c62d98276893db16ce16508fc518a

Author: Sebastian Lackner <sebastian at fds-team.de>
Date:   Fri Aug 19 01:03:31 2016 +0200

ntdll: Convert an ERR to a WARN when wait is triggered while destroying threadpool object.

Signed-off-by: Sebastian Lackner <sebastian at fds-team.de>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/ntdll/threadpool.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/ntdll/threadpool.c b/dlls/ntdll/threadpool.c
index 799245c..5d5b49d 100644
--- a/dlls/ntdll/threadpool.c
+++ b/dlls/ntdll/threadpool.c
@@ -1432,7 +1432,7 @@ static void CALLBACK waitqueue_thread_proc( void *param )
                     tp_object_submit( wait, TRUE );
                 }
                 else
-                    ERR("wait object %p triggered while object was destroyed\n", wait);
+                    WARN("wait object %p triggered while object was destroyed\n", wait);
             }
 
             /* Release temporary references to wait objects. */




More information about the wine-cvs mailing list