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
a936b58b
Commit
a936b58b
authored
Oct 22, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Oct 22, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Return from StartServiceCtrlDispatcher when service status is changed to stopped.
parent
6027fe2d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
service.c
dlls/advapi32/service.c
+12
-3
No files found.
dlls/advapi32/service.c
View file @
a936b58b
...
@@ -86,6 +86,7 @@ static CRITICAL_SECTION service_cs = { &service_cs_debug, -1, 0, 0, 0, 0 };
...
@@ -86,6 +86,7 @@ static CRITICAL_SECTION service_cs = { &service_cs_debug, -1, 0, 0, 0, 0 };
static
service_data
**
services
;
static
service_data
**
services
;
static
unsigned
int
nb_services
;
static
unsigned
int
nb_services
;
static
HANDLE
service_event
;
static
HANDLE
service_event
;
static
HANDLE
stop_event
;
extern
HANDLE
CDECL
__wine_make_process_system
(
void
);
extern
HANDLE
CDECL
__wine_make_process_system
(
void
);
...
@@ -465,11 +466,13 @@ static BOOL service_run_main_thread(void)
...
@@ -465,11 +466,13 @@ static BOOL service_run_main_thread(void)
UINT
wait_services
[
MAXIMUM_WAIT_OBJECTS
];
UINT
wait_services
[
MAXIMUM_WAIT_OBJECTS
];
service_event
=
CreateEventW
(
NULL
,
FALSE
,
FALSE
,
NULL
);
service_event
=
CreateEventW
(
NULL
,
FALSE
,
FALSE
,
NULL
);
stop_event
=
CreateEventW
(
NULL
,
FALSE
,
FALSE
,
NULL
);
/* FIXME: service_control_dispatcher should be merged into the main thread */
/* FIXME: service_control_dispatcher should be merged into the main thread */
wait_handles
[
0
]
=
__wine_make_process_system
();
wait_handles
[
0
]
=
__wine_make_process_system
();
wait_handles
[
1
]
=
CreateThread
(
NULL
,
0
,
service_control_dispatcher
,
NULL
,
0
,
NULL
);
wait_handles
[
1
]
=
CreateThread
(
NULL
,
0
,
service_control_dispatcher
,
NULL
,
0
,
NULL
);
wait_handles
[
2
]
=
service_event
;
wait_handles
[
2
]
=
service_event
;
wait_handles
[
3
]
=
stop_event
;
TRACE
(
"Starting %d services running as process %d
\n
"
,
TRACE
(
"Starting %d services running as process %d
\n
"
,
nb_services
,
GetCurrentProcessId
());
nb_services
,
GetCurrentProcessId
());
...
@@ -478,7 +481,7 @@ static BOOL service_run_main_thread(void)
...
@@ -478,7 +481,7 @@ static BOOL service_run_main_thread(void)
for
(;;)
for
(;;)
{
{
EnterCriticalSection
(
&
service_cs
);
EnterCriticalSection
(
&
service_cs
);
for
(
i
=
0
,
n
=
3
;
i
<
nb_services
&&
n
<
MAXIMUM_WAIT_OBJECTS
;
i
++
)
for
(
i
=
0
,
n
=
4
;
i
<
nb_services
&&
n
<
MAXIMUM_WAIT_OBJECTS
;
i
++
)
{
{
if
(
!
services
[
i
]
->
thread
)
continue
;
if
(
!
services
[
i
]
->
thread
)
continue
;
wait_services
[
n
]
=
i
;
wait_services
[
n
]
=
i
;
...
@@ -536,11 +539,15 @@ static BOOL service_run_main_thread(void)
...
@@ -536,11 +539,15 @@ static BOOL service_run_main_thread(void)
{
{
continue
;
/* rebuild the list */
continue
;
/* rebuild the list */
}
}
else
if
(
ret
==
3
)
{
return
TRUE
;
}
else
if
(
ret
<
n
)
else
if
(
ret
<
n
)
{
{
services
[
wait_services
[
ret
]]
->
thread
=
0
;
services
[
wait_services
[
ret
]]
->
thread
=
0
;
CloseHandle
(
wait_handles
[
ret
]
);
CloseHandle
(
wait_handles
[
ret
]
);
if
(
n
==
4
)
return
TRUE
;
/* it was the last running thread */
if
(
n
==
5
)
return
TRUE
;
/* it was the last running thread */
}
}
else
return
FALSE
;
else
return
FALSE
;
}
}
...
@@ -727,8 +734,10 @@ SetServiceStatus( SERVICE_STATUS_HANDLE hService, LPSERVICE_STATUS lpStatus )
...
@@ -727,8 +734,10 @@ SetServiceStatus( SERVICE_STATUS_HANDLE hService, LPSERVICE_STATUS lpStatus )
return
FALSE
;
return
FALSE
;
}
}
if
(
lpStatus
->
dwCurrentState
==
SERVICE_STOPPED
)
if
(
lpStatus
->
dwCurrentState
==
SERVICE_STOPPED
)
{
SetEvent
(
stop_event
);
CloseServiceHandle
((
SC_HANDLE
)
hService
);
CloseServiceHandle
((
SC_HANDLE
)
hService
);
}
return
TRUE
;
return
TRUE
;
}
}
...
...
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