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
59048279
Commit
59048279
authored
Jun 11, 2010
by
Jakob Leben
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbus: playlist locking
untested
parent
c6d8c654
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
modules/control/dbus.c
modules/control/dbus.c
+4
-2
No files found.
modules/control/dbus.c
View file @
59048279
...
...
@@ -928,8 +928,10 @@ DBUS_SIGNAL( TrackListChangeSignal )
SIGNAL_INIT
(
MPRIS_DBUS_TRACKLIST_PATH
,
"TrackListChange"
);
OUT_ARGUMENTS
;
/* XXX: locking */
dbus_int32_t
i_elements
=
((
intf_thread_t
*
)
p_data
)
->
p_sys
->
p_playlist
->
current
.
i_size
;
playlist_t
*
p_playlist
=
((
intf_thread_t
*
)
p_data
)
->
p_sys
->
p_playlist
;
PL_LOCK
;
dbus_int32_t
i_elements
=
p_playlist
->
current
.
i_size
;
PL_UNLOCK
;
ADD_INT32
(
&
i_elements
);
SIGNAL_SEND
;
...
...
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