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
dfa6e4ce
Commit
dfa6e4ce
authored
May 09, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Privatize vlc_object_kill()
parent
602a70a0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
5 deletions
+2
-5
include/vlc_objects.h
include/vlc_objects.h
+0
-4
src/libvlc.h
src/libvlc.h
+2
-0
src/libvlccore.sym
src/libvlccore.sym
+0
-1
No files found.
include/vlc_objects.h
View file @
dfa6e4ce
...
...
@@ -73,10 +73,6 @@ VLC_API char *vlc_object_get_name( const vlc_object_t * ) VLC_USED;
vlc_list_children( VLC_OBJECT(a) )
/* Objects and threading */
VLC_API
void
vlc_object_kill
(
vlc_object_t
*
)
VLC_DEPRECATED
;
#define vlc_object_kill(a) \
vlc_object_kill( VLC_OBJECT(a) )
VLC_USED
VLC_DEPRECATED
static
inline
bool
vlc_object_alive
(
const
vlc_object_t
*
obj
)
{
...
...
src/libvlc.h
View file @
dfa6e4ce
...
...
@@ -54,6 +54,8 @@ void vlc_CPU_dump(vlc_object_t *);
int
vlc_clone_detach
(
vlc_thread_t
*
,
void
*
(
*
)(
void
*
),
void
*
,
int
);
int
vlc_object_waitpipe
(
vlc_object_t
*
obj
);
void
vlc_object_kill
(
vlc_object_t
*
)
VLC_DEPRECATED
;
#define vlc_object_kill(o) vlc_object_kill(VLC_OBJECT(o))
int
vlc_set_priority
(
vlc_thread_t
,
int
);
...
...
src/libvlccore.sym
View file @
dfa6e4ce
...
...
@@ -561,7 +561,6 @@ vlc_global_mutex
vlc_object_create
vlc_object_find_name
vlc_object_hold
vlc_object_kill
vlc_object_release
vlc_object_get_name
vlc_rand_bytes
...
...
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