Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
bd31e320
Commit
bd31e320
authored
Sep 01, 2016
by
Sebastian Lackner
Committed by
Alexandre Julliard
Sep 02, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
schedsvc: Avoid deadlock when scheduler service starts rpcss.
Signed-off-by:
Sebastian Lackner
<
sebastian@fds-team.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e3cda2c4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
svc_main.c
dlls/schedsvc/svc_main.c
+7
-5
No files found.
dlls/schedsvc/svc_main.c
View file @
bd31e320
...
...
@@ -175,8 +175,6 @@ void WINAPI ServiceMain(DWORD argc, LPWSTR *argv)
{
TRACE
(
"starting Task Scheduler Service
\n
"
);
if
(
RPC_init
()
!=
RPC_S_OK
)
return
;
schedsvc_handle
=
RegisterServiceCtrlHandlerW
(
scheduleW
,
schedsvc_handler
);
if
(
!
schedsvc_handle
)
{
...
...
@@ -186,11 +184,15 @@ void WINAPI ServiceMain(DWORD argc, LPWSTR *argv)
done_event
=
CreateEventW
(
NULL
,
TRUE
,
FALSE
,
NULL
);
schedsvc_update_status
(
SERVICE_
RUNN
ING
);
schedsvc_update_status
(
SERVICE_
START_PEND
ING
);
WaitForSingleObject
(
done_event
,
INFINITE
);
if
(
RPC_init
()
==
RPC_S_OK
)
{
schedsvc_update_status
(
SERVICE_RUNNING
);
WaitForSingleObject
(
done_event
,
INFINITE
);
RPC_finish
();
}
RPC_finish
();
schedsvc_update_status
(
SERVICE_STOPPED
);
TRACE
(
"exiting Task Scheduler Service
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment