Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
13ca60ed
Commit
13ca60ed
authored
Feb 03, 2010
by
Jean-Philippe André
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert
ef5d32ea
: hopefully fix a race condition on deactivation
This was wrong, the fix should not come there.
parent
7126c75f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
modules/misc/lua/extension_thread.c
modules/misc/lua/extension_thread.c
+1
-5
No files found.
modules/misc/lua/extension_thread.c
View file @
13ca60ed
...
...
@@ -198,11 +198,7 @@ static int RemoveActivated( extensions_manager_t *p_mgr, extension_t *p_ext )
/** Wait for an extension to finish */
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
);
vlc_join
(
p_ext
->
p_sys
->
thread
,
NULL
);
}
/** Push a UI command */
...
...
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