Commit dfa6e4ce authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Privatize vlc_object_kill()

parent 602a70a0
......@@ -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)
{
......
......@@ -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 );
......
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment