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

Unexport vlc_object_dump

parent 7dfd6436
...@@ -92,9 +92,6 @@ VLC_EXPORT( vlc_list_t *, __vlc_list_find, ( vlc_object_t *, int, int ) ); ...@@ -92,9 +92,6 @@ VLC_EXPORT( vlc_list_t *, __vlc_list_find, ( vlc_object_t *, int, int ) );
VLC_EXPORT( vlc_list_t *, __vlc_list_children, ( vlc_object_t * ) ); VLC_EXPORT( vlc_list_t *, __vlc_list_children, ( vlc_object_t * ) );
VLC_EXPORT( void, vlc_list_release, ( vlc_list_t * ) ); VLC_EXPORT( void, vlc_list_release, ( vlc_list_t * ) );
/* __vlc_object_dump */
VLC_EXPORT( void, __vlc_object_dump, ( vlc_object_t *p_this ) );
/*}@*/ /*}@*/
#define vlc_object_create(a,b) \ #define vlc_object_create(a,b) \
...@@ -127,10 +124,6 @@ VLC_EXPORT( void, __vlc_object_dump, ( vlc_object_t *p_this ) ); ...@@ -127,10 +124,6 @@ VLC_EXPORT( void, __vlc_object_dump, ( vlc_object_t *p_this ) );
#define vlc_list_children(a) \ #define vlc_list_children(a) \
__vlc_list_children( VLC_OBJECT(a) ) __vlc_list_children( VLC_OBJECT(a) )
#define vlc_object_dump(a) \
__vlc_object_dump( VLC_OBJECT(a))
/* Objects and threading */ /* Objects and threading */
VLC_EXPORT( void, __vlc_object_lock, ( vlc_object_t * ) ); VLC_EXPORT( void, __vlc_object_lock, ( vlc_object_t * ) );
#define vlc_object_lock( obj ) \ #define vlc_object_lock( obj ) \
......
...@@ -466,7 +466,6 @@ vlc_mutex_init_recursive ...@@ -466,7 +466,6 @@ vlc_mutex_init_recursive
__vlc_object_attach __vlc_object_attach
__vlc_object_create __vlc_object_create
__vlc_object_detach __vlc_object_detach
__vlc_object_dump
__vlc_object_find __vlc_object_find
__vlc_object_find_name __vlc_object_find_name
vlc_object_get vlc_object_get
......
...@@ -83,6 +83,7 @@ static void ListChildren ( vlc_list_t *, vlc_object_t *, int ); ...@@ -83,6 +83,7 @@ static void ListChildren ( vlc_list_t *, vlc_object_t *, int );
static void vlc_object_destroy( vlc_object_t *p_this ); static void vlc_object_destroy( vlc_object_t *p_this );
static void vlc_object_detach_unlocked (vlc_object_t *p_this); static void vlc_object_detach_unlocked (vlc_object_t *p_this);
static void vlc_object_dump( vlc_object_t *p_this )
/***************************************************************************** /*****************************************************************************
* Local structure lock * Local structure lock
...@@ -1099,7 +1100,7 @@ void vlc_list_release( vlc_list_t *p_list ) ...@@ -1099,7 +1100,7 @@ void vlc_list_release( vlc_list_t *p_list )
/***************************************************************************** /*****************************************************************************
* dump an object. (Debug function) * dump an object. (Debug function)
*****************************************************************************/ *****************************************************************************/
void __vlc_object_dump( vlc_object_t *p_this ) static void vlc_object_dump( vlc_object_t *p_this )
{ {
char psz_foo[2 * MAX_DUMPSTRUCTURE_DEPTH + 1]; char psz_foo[2 * MAX_DUMPSTRUCTURE_DEPTH + 1];
psz_foo[0] = '|'; psz_foo[0] = '|';
......
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