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

Remove dummy usage of vlc_thread_ready()

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