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
GSoC
GSoC2018
macOS
vlc
Commits
ef5d32ea
Commit
ef5d32ea
authored
Feb 03, 2010
by
JPeg
Browse files
Extensions: hopefully fix a race condition on deactivation
parent
1f3bd0cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/misc/lua/extension_thread.c
View file @
ef5d32ea
...
...
@@ -199,7 +199,9 @@ static int RemoveActivated( extensions_manager_t *p_mgr, extension_t *p_ext )
void
WaitForDeactivation
(
extension_t
*
p_ext
)
{
void
*
pointer
=
NULL
;
vlc_mutex_lock
(
&
p_ext
->
p_sys
->
command_lock
);
vlc_cond_signal
(
&
p_ext
->
p_sys
->
wait
);
vlc_mutex_unlock
(
&
p_ext
->
p_sys
->
command_lock
);
vlc_join
(
p_ext
->
p_sys
->
thread
,
&
pointer
);
}
...
...
@@ -383,7 +385,7 @@ static void* Run( void *data )
}
vlc_mutex_unlock
(
&
p_ext
->
p_sys
->
command_lock
);
msg_Dbg
(
p_mgr
,
"Extension thread end
ing..."
);
msg_Dbg
(
p_mgr
,
"Extension thread end
: '%s'"
,
p_ext
->
psz_title
);
// Note: At this point, the extension should be deactivated
return
NULL
;
...
...
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