Start Rpc server listener thread before device installer thread

See issue #3068 for more details.

svn path=/trunk/; revision=33799
This commit is contained in:
Hervé Poussineau 2008-06-01 10:49:28 +00:00
parent fcd2a4e62c
commit b3b07836ef

View file

@ -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);