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

vlc_threadobj under NDEBUG and refcheck under LIBVLC_REFCHECK

vlc_threadobj() is no use otherwise. People may want not to enable
reference checking all the time also...
parent c15a5164
...@@ -46,7 +46,7 @@ void system_End ( libvlc_int_t * ); ...@@ -46,7 +46,7 @@ void system_End ( libvlc_int_t * );
int vlc_threads_init( void ); int vlc_threads_init( void );
void vlc_threads_end( void ); void vlc_threads_end( void );
vlc_object_t *vlc_threadobj (void); vlc_object_t *vlc_threadobj (void);
#ifndef NDEBUG #ifdef LIBVLC_REFCHECK
void vlc_refcheck (vlc_object_t *obj); void vlc_refcheck (vlc_object_t *obj);
#else #else
# define vlc_refcheck( obj ) (void)0 # define vlc_refcheck( obj ) (void)0
...@@ -186,7 +186,7 @@ struct vlc_object_internals_t ...@@ -186,7 +186,7 @@ struct vlc_object_internals_t
vlc_spinlock_t ref_spin; vlc_spinlock_t ref_spin;
unsigned i_refcount; unsigned i_refcount;
vlc_destructor_t pf_destructor; vlc_destructor_t pf_destructor;
#ifndef NDEBUG #ifndef LIBVLC_REFCHECK
vlc_thread_t creator_id; vlc_thread_t creator_id;
#endif #endif
......
...@@ -81,7 +81,7 @@ static void ListChildren ( vlc_list_t *, vlc_object_t *, int ); ...@@ -81,7 +81,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);
#ifndef NDEBUG #ifdef LIBVLC_REFCHECK
static vlc_threadvar_t held_objects; static vlc_threadvar_t held_objects;
typedef struct held_list_t typedef struct held_list_t
{ {
...@@ -151,7 +151,7 @@ void *vlc_custom_create( vlc_object_t *p_this, size_t i_size, ...@@ -151,7 +151,7 @@ void *vlc_custom_create( vlc_object_t *p_this, size_t i_size,
p_libvlc_global->i_counter = 0; p_libvlc_global->i_counter = 0;
p_priv->next = p_priv->prev = p_new; p_priv->next = p_priv->prev = p_new;
vlc_mutex_init( &structure_lock ); vlc_mutex_init( &structure_lock );
#ifndef NDEBUG #ifdef LIBVLC_REFCHECK
/* TODO: use the destruction callback to track ref leaks */ /* TODO: use the destruction callback to track ref leaks */
vlc_threadvar_create( &held_objects, held_objects_destroy ); vlc_threadvar_create( &held_objects, held_objects_destroy );
#endif #endif
...@@ -183,7 +183,7 @@ void *vlc_custom_create( vlc_object_t *p_this, size_t i_size, ...@@ -183,7 +183,7 @@ void *vlc_custom_create( vlc_object_t *p_this, size_t i_size,
p_priv->pipes[0] = p_priv->pipes[1] = -1; p_priv->pipes[0] = p_priv->pipes[1] = -1;
p_priv->next = VLC_OBJECT (p_libvlc_global); p_priv->next = VLC_OBJECT (p_libvlc_global);
#if defined (NDEBUG) #if !defined (LIBVLC_REFCHECK)
/* ... */ /* ... */
#elif defined (LIBVLC_USE_PTHREAD) #elif defined (LIBVLC_USE_PTHREAD)
p_priv->creator_id = pthread_self (); p_priv->creator_id = pthread_self ();
...@@ -384,7 +384,7 @@ static void vlc_object_destroy( vlc_object_t *p_this ) ...@@ -384,7 +384,7 @@ static void vlc_object_destroy( vlc_object_t *p_this )
/* We are the global object ... no need to lock. */ /* We are the global object ... no need to lock. */
vlc_mutex_destroy( &structure_lock ); vlc_mutex_destroy( &structure_lock );
#ifndef NDEBUG #ifdef LIBVLC_REFCHECK
held_objects_destroy( vlc_threadvar_get( &held_objects ) ); held_objects_destroy( vlc_threadvar_get( &held_objects ) );
vlc_threadvar_delete( &held_objects ); vlc_threadvar_delete( &held_objects );
#endif #endif
...@@ -663,6 +663,7 @@ void * vlc_object_get( int i_id ) ...@@ -663,6 +663,7 @@ void * vlc_object_get( int i_id )
{ {
libvlc_global_data_t *p_libvlc_global = vlc_global(); libvlc_global_data_t *p_libvlc_global = vlc_global();
vlc_object_t *obj = NULL; vlc_object_t *obj = NULL;
#ifndef NDEBUG
vlc_object_t *caller = vlc_threadobj (); vlc_object_t *caller = vlc_threadobj ();
if (caller) if (caller)
...@@ -670,7 +671,7 @@ void * vlc_object_get( int i_id ) ...@@ -670,7 +671,7 @@ void * vlc_object_get( int i_id )
else else
fprintf (stderr, "main thread uses deprecated vlc_object_get(%d)\n", fprintf (stderr, "main thread uses deprecated vlc_object_get(%d)\n",
i_id); i_id);
#endif
vlc_mutex_lock( &structure_lock ); vlc_mutex_lock( &structure_lock );
for( obj = vlc_internals (p_libvlc_global)->next; for( obj = vlc_internals (p_libvlc_global)->next;
...@@ -684,10 +685,12 @@ void * vlc_object_get( int i_id ) ...@@ -684,10 +685,12 @@ void * vlc_object_get( int i_id )
} }
} }
obj = NULL; obj = NULL;
#ifndef NDEBUG
if (caller) if (caller)
msg_Warn (caller, "wants non-existing object %d", i_id); msg_Warn (caller, "wants non-existing object %d", i_id);
else else
fprintf (stderr, "main thread wants non-existing object %d\n", i_id); fprintf (stderr, "main thread wants non-existing object %d\n", i_id);
#endif
out: out:
vlc_mutex_unlock( &structure_lock ); vlc_mutex_unlock( &structure_lock );
return obj; return obj;
...@@ -795,7 +798,7 @@ void __vlc_object_yield( vlc_object_t *p_this ) ...@@ -795,7 +798,7 @@ void __vlc_object_yield( vlc_object_t *p_this )
/* Increment the counter */ /* Increment the counter */
internals->i_refcount++; internals->i_refcount++;
vlc_spin_unlock( &internals->ref_spin ); vlc_spin_unlock( &internals->ref_spin );
#ifndef NDEBUG #ifdef LIBVLC_REFCHECK
/* Update the list of referenced objects */ /* Update the list of referenced objects */
/* Using TLS, so no need to lock */ /* Using TLS, so no need to lock */
/* The following line may leak memory if a thread leaks objects. */ /* The following line may leak memory if a thread leaks objects. */
...@@ -816,7 +819,7 @@ void __vlc_object_release( vlc_object_t *p_this ) ...@@ -816,7 +819,7 @@ void __vlc_object_release( vlc_object_t *p_this )
vlc_object_internals_t *internals = vlc_internals( p_this ); vlc_object_internals_t *internals = vlc_internals( p_this );
bool b_should_destroy; bool b_should_destroy;
#ifndef NDEBUG #ifdef LIBVLC_REFCHECK
/* Update the list of referenced objects */ /* Update the list of referenced objects */
/* Using TLS, so no need to lock */ /* Using TLS, so no need to lock */
for (held_list_t *hlcur = vlc_threadvar_get (&held_objects), for (held_list_t *hlcur = vlc_threadvar_get (&held_objects),
...@@ -1528,7 +1531,7 @@ static void ListChildren( vlc_list_t *p_list, vlc_object_t *p_this, int i_type ) ...@@ -1528,7 +1531,7 @@ static void ListChildren( vlc_list_t *p_list, vlc_object_t *p_this, int i_type )
} }
} }
#ifndef NDEBUG #ifdef LIBVLC_REFCHECK
# if defined(HAVE_EXECINFO_H) && defined(HAVE_BACKTRACE) # if defined(HAVE_EXECINFO_H) && defined(HAVE_BACKTRACE)
# include <execinfo.h> # include <execinfo.h>
# endif # endif
......
...@@ -63,6 +63,7 @@ libvlc_global_data_t *vlc_global( void ) ...@@ -63,6 +63,7 @@ libvlc_global_data_t *vlc_global( void )
return p_root; return p_root;
} }
#ifndef NDEBUG
/** /**
* Object running the current thread * Object running the current thread
*/ */
...@@ -72,6 +73,7 @@ vlc_object_t *vlc_threadobj (void) ...@@ -72,6 +73,7 @@ vlc_object_t *vlc_threadobj (void)
{ {
return vlc_threadvar_get (&thread_object_key); return vlc_threadvar_get (&thread_object_key);
} }
#endif
vlc_threadvar_t msg_context_global_key; vlc_threadvar_t msg_context_global_key;
...@@ -170,7 +172,9 @@ int vlc_threads_init( void ) ...@@ -170,7 +172,9 @@ int vlc_threads_init( void )
} }
/* We should be safe now. Do all the initialization stuff we want. */ /* We should be safe now. Do all the initialization stuff we want. */
#ifndef NDEBUG
vlc_threadvar_create( &thread_object_key, NULL ); vlc_threadvar_create( &thread_object_key, NULL );
#endif
vlc_threadvar_create( &msg_context_global_key, msg_StackDestroy ); vlc_threadvar_create( &msg_context_global_key, msg_StackDestroy );
} }
i_initializations++; i_initializations++;
...@@ -202,7 +206,9 @@ void vlc_threads_end( void ) ...@@ -202,7 +206,9 @@ void vlc_threads_end( void )
{ {
vlc_object_release( p_root ); vlc_object_release( p_root );
vlc_threadvar_delete( &msg_context_global_key ); vlc_threadvar_delete( &msg_context_global_key );
#ifndef NDEBUG
vlc_threadvar_delete( &thread_object_key ); vlc_threadvar_delete( &thread_object_key );
#endif
} }
i_initializations--; i_initializations--;
...@@ -453,7 +459,9 @@ static THREAD_RTYPE thread_entry (void *data) ...@@ -453,7 +459,9 @@ static THREAD_RTYPE thread_entry (void *data)
void *(*func) (void *) = ((struct vlc_thread_boot *)data)->entry; void *(*func) (void *) = ((struct vlc_thread_boot *)data)->entry;
free (data); free (data);
#ifdef NDEBUG
vlc_threadvar_set (&thread_object_key, obj); vlc_threadvar_set (&thread_object_key, obj);
#endif
msg_Dbg (obj, "thread started"); msg_Dbg (obj, "thread started");
func (obj); func (obj);
msg_Dbg (obj, "thread ended"); msg_Dbg (obj, "thread ended");
......
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