Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
5c93ab38
Commit
5c93ab38
authored
Aug 28, 2008
by
Rémi Denis-Courmont
Browse files
Run SD threads (if any) with cancellation
parent
64d0d7ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/playlist/services_discovery.c
View file @
5c93ab38
...
...
@@ -209,11 +209,12 @@ static void* RunSD( vlc_object_t *p_this )
.
type
=
vlc_ServicesDiscoveryStarted
};
int
canc
=
vlc_savecancel
();
vlc_event_send
(
&
p_sd
->
event_manager
,
&
event
);
vlc_restorecancel
(
canc
);
p_sd
->
pf_run
(
p_sd
);
canc
=
vlc_savecancel
();
event
.
type
=
vlc_ServicesDiscoveryEnded
;
vlc_event_send
(
&
p_sd
->
event_manager
,
&
event
);
vlc_restorecancel
(
canc
);
...
...
Write
Preview
Supports
Markdown
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