[vlc-devel] commit: libvlccore: remove the threads count ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sun Aug 17 12:23:45 CEST 2008
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sun Aug 17 13:25:59 2008 +0300| [f6c0a1a124a213f18482bab4272740fe518a3d8a] | committer: Rémi Denis-Courmont
libvlccore: remove the threads count
Nowadays, it can only deadlock (threads>0) or do nothing (threads==0)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f6c0a1a124a213f18482bab4272740fe518a3d8a
---
src/libvlc.c | 17 -----------------
src/libvlc.h | 5 -----
src/misc/threads.c | 24 ------------------------
3 files changed, 0 insertions(+), 46 deletions(-)
diff --git a/src/libvlc.c b/src/libvlc.c
index 9673a5c..96cab09 100644
--- a/src/libvlc.c
+++ b/src/libvlc.c
@@ -233,10 +233,6 @@ libvlc_int_t * libvlc_InternalCreate( void )
vlc_mutex_init( &priv->timer_lock );
vlc_mutex_init( &priv->config_lock );
- priv->threads_count = 0;
- vlc_mutex_init (&priv->threads_lock);
- vlc_cond_init (NULL, &priv->threads_wait);
-
/* Store data for the non-reentrant API */
p_static_vlc = p_libvlc;
@@ -1032,17 +1028,6 @@ int libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
}
#endif
- /* Make sure all threads are completed before we start looking for
- * reference leaks and deinitializing core LibVLC subsytems. */
- vlc_mutex_lock (&priv->threads_lock);
- while (priv->threads_count)
- {
- msg_Dbg (p_libvlc, "waiting for %u remaining threads",
- priv->threads_count);
- vlc_cond_wait (&priv->threads_wait, &priv->threads_lock);
- }
- vlc_mutex_unlock (&priv->threads_lock);
-
bool b_clean = true;
FOREACH_ARRAY( input_item_t *p_del, priv->input_items )
msg_Err( p_libvlc, "input item %p has not been deleted properly: refcount %d, name %s",
@@ -1122,8 +1107,6 @@ int libvlc_InternalDestroy( libvlc_int_t *p_libvlc )
/* Destroy mutexes */
vlc_mutex_destroy( &priv->config_lock );
vlc_mutex_destroy( &priv->timer_lock );
- vlc_cond_destroy (&priv->threads_wait);
- vlc_mutex_destroy (&priv->threads_lock);
vlc_object_release( p_libvlc );
p_libvlc = NULL;
diff --git a/src/libvlc.h b/src/libvlc.h
index e9ec933..334b744 100644
--- a/src/libvlc.h
+++ b/src/libvlc.h
@@ -256,11 +256,6 @@ typedef struct libvlc_priv_t
/* Private playlist data (FIXME - playlist_t is too public...) */
sout_instance_t *p_sout; ///< kept sout instance (for playlist)
-
- /* Thread support */
- unsigned threads_count;
- vlc_mutex_t threads_lock;
- vlc_cond_t threads_wait;
} libvlc_priv_t;
static inline libvlc_priv_t *libvlc_priv (libvlc_int_t *libvlc)
diff --git a/src/misc/threads.c b/src/misc/threads.c
index ce820b6..b198392 100644
--- a/src/misc/threads.c
+++ b/src/misc/threads.c
@@ -480,7 +480,6 @@ int __vlc_thread_create( vlc_object_t *p_this, const char * psz_file, int i_line
{
int i_ret;
vlc_object_internals_t *p_priv = vlc_internals( p_this );
- libvlc_priv_t *libpriv = libvlc_priv (p_this->p_libvlc);
struct vlc_thread_boot *boot = malloc (sizeof (*boot));
if (boot == NULL)
@@ -488,10 +487,6 @@ int __vlc_thread_create( vlc_object_t *p_this, const char * psz_file, int i_line
boot->entry = func;
boot->object = p_this;
- vlc_mutex_lock (&libpriv->threads_lock);
- libpriv->threads_count++;
- vlc_mutex_unlock (&libpriv->threads_lock);
-
vlc_object_lock( p_this );
/* Make sure we don't re-create a thread if the object has already one */
@@ -598,14 +593,6 @@ int __vlc_thread_create( vlc_object_t *p_this, const char * psz_file, int i_line
}
vlc_object_unlock( p_this );
-
- if (i_ret)
- {
- vlc_mutex_lock (&libpriv->threads_lock);
- if (--libpriv->threads_count == 0)
- vlc_cond_signal (&libpriv->threads_wait);
- vlc_mutex_unlock (&libpriv->threads_lock);
- }
return i_ret;
}
@@ -766,19 +753,8 @@ error:
(unsigned long)p_priv->thread_id, psz_file, i_line );
}
else
- {
- libvlc_priv_t *libpriv = libvlc_priv (p_this->p_libvlc);
msg_Dbg( p_this, "thread %lu joined (%s:%d)",
(unsigned long)p_priv->thread_id, psz_file, i_line );
- vlc_mutex_lock (&libpriv->threads_lock);
-#ifndef NDEBUG
- libpriv->threads_count--;
-#else
- if (--libpriv->threads_count == 0)
-#endif
- vlc_cond_signal (&libpriv->threads_wait);
- vlc_mutex_unlock (&libpriv->threads_lock);
- }
p_priv->b_thread = false;
}
More information about the vlc-devel
mailing list