]> git.sesse.net Git - vlc/commitdiff
Remove dummy usage of vlc_thread_ready()
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Mon, 8 Sep 2008 16:07:13 +0000 (19:07 +0300)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Mon, 8 Sep 2008 16:07:13 +0000 (19:07 +0300)
It only makes sense if the thread actually initializes something.

src/input/input.c
src/playlist/thread.c

index 1feaf8679a1dc65ac4b1581a430d8419213f7a14..aa85dd2eecb92a46a5d724cc9a2f0db6079a7262 100644 (file)
@@ -370,7 +370,7 @@ input_thread_t *__input_CreateThreadExtended( vlc_object_t *p_parent,
 
     /* Create thread and wait for its readiness. */
     if( vlc_thread_create( p_input, "input", Run,
-                           VLC_THREAD_PRIORITY_INPUT, true ) )
+                           VLC_THREAD_PRIORITY_INPUT, false ) )
     {
         input_ChangeState( p_input, ERROR_S );
         msg_Err( p_input, "cannot create input thread" );
@@ -408,7 +408,7 @@ int __input_Read( vlc_object_t *p_parent, input_item_t *p_item,
     else
     {
         if( vlc_thread_create( p_input, "input", RunAndDestroy,
-                               VLC_THREAD_PRIORITY_INPUT, true ) )
+                               VLC_THREAD_PRIORITY_INPUT, false ) )
         {
             input_ChangeState( p_input, ERROR_S );
             msg_Err( p_input, "cannot create input thread" );
@@ -495,9 +495,6 @@ static void* Run( vlc_object_t *p_this )
     input_thread_t *p_input = (input_thread_t *)p_this;
     const int canc = vlc_savecancel();
 
-    /* Signal that the thread is launched */
-    vlc_thread_ready( p_input );
-
     if( Init( p_input ) )
     {
         /* If we failed, wait before we are killed, and exit */
@@ -530,9 +527,6 @@ static void* RunAndDestroy( vlc_object_t *p_this )
     input_thread_t *p_input = (input_thread_t *)p_this;
     const int canc = vlc_savecancel();
 
-    /* Signal that the thread is launched */
-    vlc_thread_ready( p_input );
-
     if( Init( p_input ) )
         goto exit;
 
index 67624e0c0746ba1aae90708b89fb8dbab4656949..7be2d0d5decac162eb824a8b61d7a647ac4227dd 100644 (file)
@@ -76,7 +76,7 @@ void __playlist_ThreadCreate( vlc_object_t *p_parent )
 
     vlc_object_attach( p_playlist->p->p_preparse, p_playlist );
     if( vlc_thread_create( p_playlist->p->p_preparse, "preparser",
-                           RunPreparse, VLC_THREAD_PRIORITY_LOW, true ) )
+                           RunPreparse, VLC_THREAD_PRIORITY_LOW, false ) )
     {
         msg_Err( p_playlist, "cannot spawn preparse thread" );
         vlc_object_release( p_playlist->p->p_preparse );
@@ -105,7 +105,7 @@ void __playlist_ThreadCreate( vlc_object_t *p_parent )
     if( vlc_thread_create( p_playlist->p->p_fetcher,
                            "fetcher",
                            RunFetcher,
-                           VLC_THREAD_PRIORITY_LOW, true ) )
+                           VLC_THREAD_PRIORITY_LOW, false ) )
     {
         msg_Err( p_playlist, "cannot spawn secondary preparse thread" );
         vlc_object_release( p_playlist->p->p_fetcher );
@@ -114,7 +114,7 @@ void __playlist_ThreadCreate( vlc_object_t *p_parent )
 
     // Start the thread
     if( vlc_thread_create( p_playlist, "playlist", RunControlThread,
-                           VLC_THREAD_PRIORITY_LOW, true ) )
+                           VLC_THREAD_PRIORITY_LOW, false ) )
     {
         msg_Err( p_playlist, "cannot spawn playlist thread" );
         vlc_object_release( p_playlist );
@@ -133,8 +133,6 @@ void __playlist_ThreadCreate( vlc_object_t *p_parent )
 static void* RunControlThread ( vlc_object_t *p_this )
 {
     playlist_t *p_playlist = (playlist_t*)p_this;
-    /* Tell above that we're ready */
-    vlc_thread_ready( p_playlist );
 
     int canc = vlc_savecancel ();
     vlc_object_lock( p_playlist );
@@ -176,8 +174,6 @@ static void* RunPreparse ( vlc_object_t *p_this )
     playlist_preparse_t *p_obj = (playlist_preparse_t*)p_this;
     int canc;
 
-    /* Tell above that we're ready */
-    vlc_thread_ready( p_obj );
     canc = vlc_savecancel ();
     playlist_PreparseLoop( p_obj );
     vlc_restorecancel (canc);
@@ -187,8 +183,6 @@ static void* RunPreparse ( vlc_object_t *p_this )
 static void* RunFetcher( vlc_object_t *p_this )
 {
     playlist_fetcher_t *p_obj = (playlist_fetcher_t *)p_this;
-    /* Tell above that we're ready */
-    vlc_thread_ready( p_obj );
     int canc = vlc_savecancel ();
     playlist_FetcherLoop( p_obj );
     vlc_restorecancel (canc);