diff options
-rw-r--r-- | src/xine-engine/audio_decoder.c | 4 | ||||
-rw-r--r-- | src/xine-engine/audio_out.c | 3 | ||||
-rw-r--r-- | src/xine-engine/demux.c | 1 | ||||
-rw-r--r-- | src/xine-engine/events.c | 4 | ||||
-rw-r--r-- | src/xine-engine/video_decoder.c | 4 | ||||
-rw-r--r-- | src/xine-engine/video_out.c | 4 |
6 files changed, 9 insertions, 11 deletions
diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c index 6965e3715..dcab13602 100644 --- a/src/xine-engine/audio_decoder.c +++ b/src/xine-engine/audio_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_decoder.c,v 1.105 2003/03/25 12:52:32 mroi Exp $ + * $Id: audio_decoder.c,v 1.106 2003/04/02 12:28:08 hadess Exp $ * * * functions that implement audio decoding @@ -347,7 +347,7 @@ void *audio_decoder_loop (void *stream_gen) { buf->free_buffer (buf); } - pthread_exit(NULL); + return NULL; } void audio_decoder_init (xine_stream_t *stream) { diff --git a/src/xine-engine/audio_out.c b/src/xine-engine/audio_out.c index 91c570c46..75014b1b8 100644 --- a/src/xine-engine/audio_out.c +++ b/src/xine-engine/audio_out.c @@ -17,7 +17,7 @@ * along with self program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_out.c,v 1.115 2003/03/28 13:15:27 miguelfreitas Exp $ + * $Id: audio_out.c,v 1.116 2003/04/02 12:28:08 hadess Exp $ * * 22-8-2001 James imported some useful AC3 sections from the previous alsa driver. * (c) 2001 Andy Lo A Foe <andy@alsaplayer.org> @@ -933,7 +933,6 @@ static void *ao_loop (void *this_gen) { if (in_buf) fifo_append (this->free_fifo, in_buf); - pthread_exit(NULL); return NULL; } diff --git a/src/xine-engine/demux.c b/src/xine-engine/demux.c index 88c5515f5..5fd21ba41 100644 --- a/src/xine-engine/demux.c +++ b/src/xine-engine/demux.c @@ -256,7 +256,6 @@ static void *demux_loop (void *stream_gen) { pthread_mutex_unlock( &stream->demux_lock ); - pthread_exit(NULL); return NULL; } diff --git a/src/xine-engine/events.c b/src/xine-engine/events.c index a4b17503d..113a1548f 100644 --- a/src/xine-engine/events.c +++ b/src/xine-engine/events.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: events.c,v 1.18 2002/11/27 16:19:53 mroi Exp $ + * $Id: events.c,v 1.19 2003/04/02 12:28:09 hadess Exp $ * * Event handling functions * @@ -201,7 +201,7 @@ static void *listener_loop (void *queue_gen) { xine_event_free (event); } - pthread_exit(NULL); + return NULL; } diff --git a/src/xine-engine/video_decoder.c b/src/xine-engine/video_decoder.c index 9ba1a706f..013237345 100644 --- a/src/xine-engine/video_decoder.c +++ b/src/xine-engine/video_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_decoder.c,v 1.132 2003/03/25 12:52:35 mroi Exp $ + * $Id: video_decoder.c,v 1.133 2003/04/02 12:28:09 hadess Exp $ * */ @@ -387,7 +387,7 @@ void *video_decoder_loop (void *stream_gen) { buf->free_buffer (buf); } - pthread_exit(NULL); + return NULL; } void video_decoder_init (xine_stream_t *stream) { diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index 3468cce0a..03d60c851 100644 --- a/src/xine-engine/video_out.c +++ b/src/xine-engine/video_out.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out.c,v 1.151 2003/03/26 01:37:55 miguelfreitas Exp $ + * $Id: video_out.c,v 1.152 2003/04/02 12:28:09 hadess Exp $ * * frame allocation / queuing / scheduling / output functions */ @@ -939,7 +939,7 @@ static void *video_out_loop (void *this_gen) { this->last_frame = NULL; } - pthread_exit(NULL); + return NULL; } /* |