summaryrefslogtreecommitdiff
path: root/libopie2
authormickeyl <mickeyl>2005-08-27 17:19:12 (UTC)
committer mickeyl <mickeyl>2005-08-27 17:19:12 (UTC)
commit85bddcabafcf7a0529e3738f306d63988b7dcbbc (patch) (side-by-side diff)
tree65f87cbffbcb42e90a47a683c68cdebf69882990 /libopie2
parent193c968b94fd6db646af8a3588e90982a20e3fc5 (diff)
downloadopie-85bddcabafcf7a0529e3738f306d63988b7dcbbc.zip
opie-85bddcabafcf7a0529e3738f306d63988b7dcbbc.tar.gz
opie-85bddcabafcf7a0529e3738f306d63988b7dcbbc.tar.bz2
call processEvents() to make it more likely^w^w^wsure the QCopEnvelope gets processed
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_abstractmobiledevice.cpp2
-rw-r--r--libopie2/opiecore/device/odevice_zaurus.cpp2
2 files changed, 4 insertions, 0 deletions
diff --git a/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp b/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp
index dbe9364..b446d05 100644
--- a/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp
+++ b/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp
@@ -63,12 +63,13 @@ bool OAbstractMobileDevice::suspend() {
bool res = false;
{
QCopEnvelope( "QPE/System", "aboutToSuspend()" );
}
+ qApp->processEvents(); // ensure the qcop call is being processed asap
struct timeval tvs, tvn;
::gettimeofday ( &tvs, 0 );
::sync(); // flush fs caches
res = ( ::system ( "apm --suspend" ) == 0 );
@@ -84,12 +85,13 @@ bool OAbstractMobileDevice::suspend() {
} while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < m_timeOut );
}
{
QCopEnvelope( "QPE/System", "returnFromSuspend()" );
}
+ qApp->processEvents(); // ensure the qcop call is being processed asap
return res;
}
//#include <linux/fb.h> better not rely on kernel headers in userspace ...
diff --git a/libopie2/opiecore/device/odevice_zaurus.cpp b/libopie2/opiecore/device/odevice_zaurus.cpp
index 5d48488..2b2467c 100644
--- a/libopie2/opiecore/device/odevice_zaurus.cpp
+++ b/libopie2/opiecore/device/odevice_zaurus.cpp
@@ -712,12 +712,13 @@ bool Zaurus::suspend() {
return false;
bool res = false;
{
QCopEnvelope( "QPE/System", "aboutToSuspend()" );
}
+ qApp->processEvents(); // ensure the qcop call is being processed asap
struct timeval tvs, tvn;
::gettimeofday ( &tvs, 0 );
::sync(); // flush fs caches
res = ( ::system ( "apm --suspend" ) == 0 );
@@ -734,9 +735,10 @@ bool Zaurus::suspend() {
} while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < m_timeOut );
}
{
QCopEnvelope( "QPE/System", "returnFromSuspend()" );
}
+ qApp->processEvents(); // ensure the qcop call is being processed asap
return res;
}