summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2009-12-01 01:33:30 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2009-12-01 01:33:30 +0000
commit0788850a343aedac79b5db636e99a8545bb4214e (patch)
tree3f955ec31e3d1648ef228f6a6d8b6271a2e9efe0
parent08a01b18e3d6195471a6b51614feeef557eca081 (diff)
downloadxine-lib-0788850a343aedac79b5db636e99a8545bb4214e.tar.gz
xine-lib-0788850a343aedac79b5db636e99a8545bb4214e.tar.bz2
Fork failure messages shouldn't be debug-only.
-rw-r--r--src/input/input_pvr.c2
-rw-r--r--src/xine-engine/audio_out.c2
-rw-r--r--src/xine-engine/broadcaster.c2
-rw-r--r--src/xine-engine/events.c2
-rw-r--r--src/xine-engine/video_out.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/input/input_pvr.c b/src/input/input_pvr.c
index 7b08ef5ea..5e7f7bca9 100644
--- a/src/input/input_pvr.c
+++ b/src/input/input_pvr.c
@@ -1453,7 +1453,7 @@ static int pvr_plugin_open (input_plugin_t *this_gen ) {
if ((err = pthread_create (&this->pvr_thread,
NULL, pvr_loop, this)) != 0) {
- xprintf (this->stream->xine, XINE_VERBOSITY_DEBUG,
+ xprintf (this->stream->xine, XINE_VERBOSITY_NONE,
"input_pvr: can't create new thread (%s)\n", strerror(err));
_x_abort();
}
diff --git a/src/xine-engine/audio_out.c b/src/xine-engine/audio_out.c
index 601af196a..4f68b8975 100644
--- a/src/xine-engine/audio_out.c
+++ b/src/xine-engine/audio_out.c
@@ -2285,7 +2285,7 @@ xine_audio_port_t *_x_ao_new_port (xine_t *xine, ao_driver_t *driver,
if ((err = pthread_create (&this->audio_thread,
&pth_attrs, ao_loop, this)) != 0) {
- xprintf (this->xine, XINE_VERBOSITY_DEBUG,
+ xprintf (this->xine, XINE_VERBOSITY_NONE,
"audio_out: can't create thread (%s)\n", strerror(err));
xprintf (this->xine, XINE_VERBOSITY_LOG,
_("audio_out: sorry, this should not happen. please restart xine.\n"));
diff --git a/src/xine-engine/broadcaster.c b/src/xine-engine/broadcaster.c
index 22390459e..a554337a3 100644
--- a/src/xine-engine/broadcaster.c
+++ b/src/xine-engine/broadcaster.c
@@ -343,7 +343,7 @@ broadcaster_t *_x_init_broadcaster(xine_stream_t *stream, int port)
this->running = 1;
if ((err = pthread_create (&this->manager_thread,
NULL, manager_loop, (void *)this)) != 0) {
- xprintf (stream->xine, XINE_VERBOSITY_DEBUG,
+ xprintf (stream->xine, XINE_VERBOSITY_NONE,
"broadcaster: can't create new thread (%s)\n", strerror(err));
_x_abort();
}
diff --git a/src/xine-engine/events.c b/src/xine-engine/events.c
index cf35f96b4..a51813adc 100644
--- a/src/xine-engine/events.c
+++ b/src/xine-engine/events.c
@@ -244,7 +244,7 @@ void xine_event_create_listener_thread (xine_event_queue_t *queue,
if ((err = pthread_create (queue->listener_thread,
NULL, listener_loop, queue)) != 0) {
- xprintf (queue->stream->xine, XINE_VERBOSITY_DEBUG,
+ xprintf (queue->stream->xine, XINE_VERBOSITY_NONE,
"events: can't create new thread (%s)\n", strerror(err));
_x_abort();
}
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c
index 1ecd59225..0b6d8f7a1 100644
--- a/src/xine-engine/video_out.c
+++ b/src/xine-engine/video_out.c
@@ -1910,7 +1910,7 @@ xine_video_port_t *_x_vo_new_port (xine_t *xine, vo_driver_t *driver, int grabon
if ((err = pthread_create (&this->video_thread,
&pth_attrs, video_out_loop, this)) != 0) {
- xprintf (this->xine, XINE_VERBOSITY_DEBUG, "video_out: can't create thread (%s)\n", strerror(err));
+ xprintf (this->xine, XINE_VERBOSITY_NONE, "video_out: can't create thread (%s)\n", strerror(err));
/* FIXME: how does this happen ? */
xprintf (this->xine, XINE_VERBOSITY_LOG,
_("video_out: sorry, this should not happen. please restart xine.\n"));