Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
337933ee
Commit
337933ee
authored
Jun 17, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use vlc_object_signal
parent
7e413aa7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
src/interface/interface.c
src/interface/interface.c
+1
-1
src/playlist/control.c
src/playlist/control.c
+1
-1
src/playlist/item.c
src/playlist/item.c
+1
-1
No files found.
src/interface/interface.c
View file @
337933ee
...
...
@@ -173,7 +173,7 @@ void intf_StopThread( intf_thread_t *p_intf )
{
/* Tell the interface to die */
vlc_object_kill
(
p_intf
);
vlc_
cond_signal
(
&
p_intf
->
object_wait
);
vlc_
object_signal
(
p_intf
);
vlc_thread_join
(
p_intf
);
}
...
...
src/playlist/control.c
View file @
337933ee
...
...
@@ -180,7 +180,7 @@ int playlist_PreparseEnqueue( playlist_t *p_playlist,
p_playlist
->
p_preparse
->
i_waiting
,
p_playlist
->
p_preparse
->
i_waiting
,
p_item
);
vlc_
cond_signal
(
&
p_playlist
->
p_preparse
->
object_wait
);
vlc_
object_signal_unlocked
(
p_playlist
->
p_preparse
);
vlc_object_unlock
(
p_playlist
->
p_preparse
);
return
VLC_SUCCESS
;
}
...
...
src/playlist/item.c
View file @
337933ee
...
...
@@ -596,7 +596,7 @@ playlist_item_t *playlist_ItemToNode( playlist_t *p_playlist,
p_playlist
->
p_root_onelevel
,
false
);
}
p_playlist
->
b_reset_currently_playing
=
true
;
vlc_
cond_signal
(
&
p_playlist
->
object_wai
t
);
vlc_
object_signal_unlocked
(
p_playlis
t
);
var_SetInteger
(
p_playlist
,
"item-change"
,
p_item_in_category
->
p_input
->
i_id
);
if
(
!
b_locked
)
PL_UNLOCK
;
...
...
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