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
1e87443a
Commit
1e87443a
authored
Jan 28, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unexport vlc_object_detach
parent
27cdd6eb
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
8 deletions
+4
-8
include/vlc_objects.h
include/vlc_objects.h
+0
-4
src/libvlc.h
src/libvlc.h
+2
-1
src/libvlccore.sym
src/libvlccore.sym
+0
-1
src/misc/objects.c
src/misc/objects.c
+2
-2
No files found.
include/vlc_objects.h
View file @
1e87443a
...
...
@@ -68,7 +68,6 @@ struct vlc_object_t
VLC_EXPORT
(
void
*
,
vlc_object_create
,
(
vlc_object_t
*
,
size_t
)
)
LIBVLC_MALLOC
LIBVLC_USED
;
VLC_EXPORT
(
void
,
__vlc_object_set_destructor
,
(
vlc_object_t
*
,
vlc_destructor_t
)
);
VLC_EXPORT
(
void
,
__vlc_object_attach
,
(
vlc_object_t
*
,
vlc_object_t
*
)
);
VLC_EXPORT
(
void
,
__vlc_object_detach
,
(
vlc_object_t
*
)
);
#if defined (__GNUC__) && !defined __cplusplus
__attribute__
((
deprecated
))
#endif
...
...
@@ -91,9 +90,6 @@ VLC_EXPORT( char *, vlc_object_get_name, ( const vlc_object_t * ) ) LIBVLC_USED;
#define vlc_object_set_destructor(a,b) \
__vlc_object_set_destructor( VLC_OBJECT(a), b )
#define vlc_object_detach(a) \
__vlc_object_detach( VLC_OBJECT(a) )
#define vlc_object_attach(a,b) \
__vlc_object_attach( VLC_OBJECT(a), VLC_OBJECT(b) )
...
...
src/libvlc.h
View file @
1e87443a
...
...
@@ -48,7 +48,8 @@ void system_End ( libvlc_int_t * );
/*
* Legacy object stuff that is still used within libvlccore (only)
*/
#define vlc_object_signal_unlocked( obj )
void
vlc_object_detach
(
vlc_object_t
*
);
#define vlc_object_detach( o ) vlc_object_detach(VLC_OBJECT(o))
/*
* Threads subsystem
...
...
src/libvlccore.sym
View file @
1e87443a
...
...
@@ -533,7 +533,6 @@ vlc_mutex_trylock
vlc_mutex_unlock
__vlc_object_attach
vlc_object_create
__vlc_object_detach
__vlc_object_find
vlc_object_find_name
__vlc_object_hold
...
...
src/misc/objects.c
View file @
1e87443a
...
...
@@ -672,14 +672,14 @@ static void vlc_object_detach_unlocked (vlc_object_t *p_this)
p_this
->
p_parent
=
NULL
;
}
#undef vlc_object_detach
/**
****************************************************************************
* detach object from its parent
*****************************************************************************
* This function removes all links between an object and its parent.
*****************************************************************************/
void
__
vlc_object_detach
(
vlc_object_t
*
p_this
)
void
vlc_object_detach
(
vlc_object_t
*
p_this
)
{
vlc_object_t
*
p_parent
;
if
(
!
p_this
)
return
;
...
...
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