aboutsummaryrefslogtreecommitdiff
path: root/lib/base/thread.cpp
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-03-30 23:30:42 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-03-30 23:30:42 +0000
commit9b02ceae89a3b478549f6dbd89ba7aa174cb7b12 (patch)
treec87d926513dae7eb0d2576590f8f080ed159e3ef /lib/base/thread.cpp
parentcb22e9b244a2f9e54dba44b818395216585190bc (diff)
downloadenigma2-9b02ceae89a3b478549f6dbd89ba7aa174cb7b12.tar.gz
enigma2-9b02ceae89a3b478549f6dbd89ba7aa174cb7b12.zip
comment out debug message.. increase waiting time for thread start
Diffstat (limited to 'lib/base/thread.cpp')
-rw-r--r--lib/base/thread.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/base/thread.cpp b/lib/base/thread.cpp
index a3edef3e..7a43a7bb 100644
--- a/lib/base/thread.cpp
+++ b/lib/base/thread.cpp
@@ -51,10 +51,10 @@ void eThread::run( int prio, int policy )
}
pthread_attr_destroy(&attr);
usleep(1000);
- int timeout=20;
+ int timeout=50;
while(!alive && timeout--)
{
- eDebug("waiting for thread start...");
+// eDebug("waiting for thread start...");
usleep(1000*10);
}
if ( !timeout )