From b3b07836ef520004f82d0dae253a1c9944e3b596 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Sun, 1 Jun 2008 10:49:28 +0000 Subject: [PATCH] Start Rpc server listener thread before device installer thread See issue #3068 for more details. svn path=/trunk/; revision=33799 --- reactos/base/services/umpnpmgr/umpnpmgr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/base/services/umpnpmgr/umpnpmgr.c b/reactos/base/services/umpnpmgr/umpnpmgr.c index 0a0962ce8ff..d919e06701b 100644 --- a/reactos/base/services/umpnpmgr/umpnpmgr.c +++ b/reactos/base/services/umpnpmgr/umpnpmgr.c @@ -2170,7 +2170,7 @@ ServiceMain(DWORD argc, LPTSTR *argv) hThread = CreateThread(NULL, 0, - DeviceInstallThread, + RpcServerThread, NULL, 0, &dwThreadId); @@ -2179,7 +2179,7 @@ ServiceMain(DWORD argc, LPTSTR *argv) hThread = CreateThread(NULL, 0, - RpcServerThread, + DeviceInstallThread, NULL, 0, &dwThreadId);