]> git.sesse.net Git - vlc/commitdiff
Unexport vlc_object_dump
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Sun, 31 Aug 2008 14:07:48 +0000 (17:07 +0300)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Sun, 31 Aug 2008 14:07:48 +0000 (17:07 +0300)
include/vlc_objects.h
src/libvlccore.sym
src/misc/objects.c

index d8e0978c2bb089c2ee4f7fa9e6f26f04a29197e2..7e8a61cec66f01acbba2e5c055e1210fc2fae0a7 100644 (file)
@@ -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( 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) \
@@ -127,10 +124,6 @@ VLC_EXPORT( void, __vlc_object_dump, ( vlc_object_t *p_this ) );
 #define vlc_list_children(a) \
     __vlc_list_children( VLC_OBJECT(a) )
 
-#define vlc_object_dump(a) \
-    __vlc_object_dump( VLC_OBJECT(a))
-
-
 /* Objects and threading */
 VLC_EXPORT( void, __vlc_object_lock, ( vlc_object_t * ) );
 #define vlc_object_lock( obj ) \
index f2bb726973e91852aef425b8704df3c5b4a958cf..c8e017b0d78832d7538f58011c95996e89a6cb19 100644 (file)
@@ -466,7 +466,6 @@ vlc_mutex_init_recursive
 __vlc_object_attach
 __vlc_object_create
 __vlc_object_detach
-__vlc_object_dump
 __vlc_object_find
 __vlc_object_find_name
 vlc_object_get
index 20deed41aa8133bfed5c5a04c182e308aa0e7ac1..c6da6c1bd8733777ca7e369495af66eb90056cb0 100644 (file)
@@ -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_detach_unlocked (vlc_object_t *p_this);
+static void vlc_object_dump( vlc_object_t *p_this )
 
 /*****************************************************************************
  * Local structure lock
@@ -1099,7 +1100,7 @@ void vlc_list_release( vlc_list_t *p_list )
 /*****************************************************************************
  * 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];
     psz_foo[0] = '|';