Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
46ffb1cd
Commit
46ffb1cd
authored
May 16, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "vlc_object_release: cleanup"
This reverts commit
c85f8681
.
parent
5d93a7ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
19 deletions
+30
-19
src/misc/objects.c
src/misc/objects.c
+30
-19
No files found.
src/misc/objects.c
View file @
46ffb1cd
...
...
@@ -840,43 +840,54 @@ void __vlc_object_yield( vlc_object_t *p_this )
void
__vlc_object_release
(
vlc_object_t
*
p_this
)
{
vlc_object_internals_t
*
internals
=
vlc_internals
(
p_this
);
bool
b_should_destroy
;
vlc_spin_lock
(
&
internals
->
ref_spin
);
assert
(
internals
->
i_refcount
>
0
);
if
(
--
internals
->
i_refcount
)
if
(
internals
->
i_refcount
>
1
)
{
/* Fast path */
/* There are still other references to the object */
internals
->
i_refcount
--
;
vlc_spin_unlock
(
&
internals
->
ref_spin
);
return
;
}
vlc_spin_unlock
(
&
internals
->
ref_spin
);
/* Slow path
: object destruction
*/
/* Slow path */
/* Remember that we cannot hold the spin while waiting on the mutex */
vlc_mutex_lock
(
&
structure_lock
);
/* Take the spin again. Note that another thread may have yielded the
* object in the (very short) mean time. */
vlc_spin_lock
(
&
internals
->
ref_spin
);
b_should_destroy
=
--
internals
->
i_refcount
==
0
;
vlc_spin_unlock
(
&
internals
->
ref_spin
);
/* Remove the object from the table
* so that it cannot be encountered by vlc_object_get() */
libvlc_global_data_t
*
p_libvlc_global
=
vlc_global
();
int
i_index
;
i_index
=
FindIndex
(
p_this
,
p_libvlc_global
->
pp_objects
,
p_libvlc_global
->
i_objects
);
REMOVE_ELEM
(
p_libvlc_global
->
pp_objects
,
p_libvlc_global
->
i_objects
,
i_index
);
/* Detach from parent to protect against FIND_CHILDREN */
if
(
p_this
->
p_parent
)
vlc_object_detach_unlocked
(
p_this
);
/* Detach from children to protect against FIND_PARENT */
for
(
int
i
=
0
;
i
<
p_this
->
i_children
;
i
++
)
p_this
->
pp_children
[
i
]
->
p_parent
=
NULL
;
if
(
b_should_destroy
)
{
/* Remove the object from the table
* so that it cannot be encountered by vlc_object_get() */
libvlc_global_data_t
*
p_libvlc_global
=
vlc_global
();
int
i_index
;
i_index
=
FindIndex
(
p_this
,
p_libvlc_global
->
pp_objects
,
p_libvlc_global
->
i_objects
);
REMOVE_ELEM
(
p_libvlc_global
->
pp_objects
,
p_libvlc_global
->
i_objects
,
i_index
);
/* Detach from parent to protect against FIND_CHILDREN */
if
(
p_this
->
p_parent
)
vlc_object_detach_unlocked
(
p_this
);
/* Detach from children to protect against FIND_PARENT */
for
(
int
i
=
0
;
i
<
p_this
->
i_children
;
i
++
)
p_this
->
pp_children
[
i
]
->
p_parent
=
NULL
;
}
vlc_mutex_unlock
(
&
structure_lock
);
vlc_object_destroy
(
p_this
);
if
(
b_should_destroy
)
vlc_object_destroy
(
p_this
);
}
/**
...
...
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