aboutsummaryrefslogtreecommitdiff
path: root/lib/gdi
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-06-04 20:43:40 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-06-04 20:43:40 +0000
commit8ecfc549ce93bc353d6a64f43a0c25dcd65f860e (patch)
treeeb9493be9021891764854c5703455fac7a39c679 /lib/gdi
parentd49d7da0bf17411dfa54147307f30d71b4b9a1ed (diff)
downloadenigma2-8ecfc549ce93bc353d6a64f43a0c25dcd65f860e.tar.gz
enigma2-8ecfc549ce93bc353d6a64f43a0c25dcd65f860e.zip
fix spinner handling
Diffstat (limited to 'lib/gdi')
-rw-r--r--lib/gdi/grc.cpp28
1 files changed, 12 insertions, 16 deletions
diff --git a/lib/gdi/grc.cpp b/lib/gdi/grc.cpp
index a46b218c..c8af2457 100644
--- a/lib/gdi/grc.cpp
+++ b/lib/gdi/grc.cpp
@@ -119,7 +119,7 @@ void *gRC::thread()
break;
else if (o.opcode==gOpcode::notify)
need_notify = 1;
- else
+ else if(o.dc)
{
o.dc->exec(&o);
// o.dc is a gDC* filled with grabref... so we must release it here
@@ -139,24 +139,21 @@ void *gRC::thread()
/* when the main thread is non-idle for a too long time without any display output,
we want to display a spinner. */
-
- struct timeval time;
struct timespec timeout;
- gettimeofday(&time, NULL);
- timeout.tv_sec = time.tv_sec;
- timeout.tv_nsec = time.tv_usec * 1000;
-
+ clock_gettime(CLOCK_REALTIME, &timeout);
+
if (m_spinner_enabled)
+ {
timeout.tv_nsec += 100*1000*1000;
- else
- timeout.tv_sec += 2;
-
/* yes, this is required. */
- if (timeout.tv_nsec > 1000*1000*1000)
- {
- timeout.tv_nsec -= 1000*1000*1000;
- timeout.tv_sec++;
+ if (timeout.tv_nsec > 1000*1000*1000)
+ {
+ timeout.tv_nsec -= 1000*1000*1000;
+ timeout.tv_sec++;
+ }
}
+ else
+ timeout.tv_sec += 2;
int idle = 1;
@@ -165,8 +162,6 @@ void *gRC::thread()
if (eApp && !eApp->isIdle())
idle = 0;
}
-
- pthread_mutex_unlock(&mutex);
if (!idle)
{
@@ -176,6 +171,7 @@ void *gRC::thread()
} else
disableSpinner();
}
+ pthread_mutex_unlock(&mutex);
#endif
}
}