diff options
-rw-r--r-- | xine_input_vdr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xine_input_vdr.c b/xine_input_vdr.c index 28e2bd60..0ff4287b 100644 --- a/xine_input_vdr.c +++ b/xine_input_vdr.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_input_vdr.c,v 1.36 2006-08-26 18:10:34 phintuka Exp $ + * $Id: xine_input_vdr.c,v 1.37 2006-08-26 18:23:16 phintuka Exp $ * */ @@ -4203,10 +4203,10 @@ static void vdr_plugin_dispose (input_plugin_t *this_gen) if(!local && this->threads_initialized) { void *p; LOGDBG("Cancel control thread ..."); - pthread_cancel(this->control_thread); + /*pthread_cancel(this->control_thread);*/ pthread_join (this->control_thread, &p); LOGDBG("Cancel data thread ..."); - pthread_cancel(this->data_thread); + /*pthread_cancel(this->data_thread);*/ pthread_join (this->data_thread, &p); LOGDBG("Threads joined"); } |