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) (unidiff)
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() {
63 63
64 bool res = false; 64 bool res = false;
65 65
66 { 66 {
67 QCopEnvelope( "QPE/System", "aboutToSuspend()" ); 67 QCopEnvelope( "QPE/System", "aboutToSuspend()" );
68 } 68 }
69 qApp->processEvents(); // ensure the qcop call is being processed asap
69 70
70 struct timeval tvs, tvn; 71 struct timeval tvs, tvn;
71 ::gettimeofday ( &tvs, 0 ); 72 ::gettimeofday ( &tvs, 0 );
72 73
73 ::sync(); // flush fs caches 74 ::sync(); // flush fs caches
74 res = ( ::system ( "apm --suspend" ) == 0 ); 75 res = ( ::system ( "apm --suspend" ) == 0 );
@@ -84,12 +85,13 @@ bool OAbstractMobileDevice::suspend() {
84 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < m_timeOut ); 85 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < m_timeOut );
85 } 86 }
86 87
87 { 88 {
88 QCopEnvelope( "QPE/System", "returnFromSuspend()" ); 89 QCopEnvelope( "QPE/System", "returnFromSuspend()" );
89 } 90 }
91 qApp->processEvents(); // ensure the qcop call is being processed asap
90 92
91 return res; 93 return res;
92} 94}
93 95
94//#include <linux/fb.h> better not rely on kernel headers in userspace ... 96//#include <linux/fb.h> better not rely on kernel headers in userspace ...
95 97
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() {
712 return false; 712 return false;
713 713
714 bool res = false; 714 bool res = false;
715 { 715 {
716 QCopEnvelope( "QPE/System", "aboutToSuspend()" ); 716 QCopEnvelope( "QPE/System", "aboutToSuspend()" );
717 } 717 }
718 qApp->processEvents(); // ensure the qcop call is being processed asap
718 719
719 struct timeval tvs, tvn; 720 struct timeval tvs, tvn;
720 ::gettimeofday ( &tvs, 0 ); 721 ::gettimeofday ( &tvs, 0 );
721 722
722 ::sync(); // flush fs caches 723 ::sync(); // flush fs caches
723 res = ( ::system ( "apm --suspend" ) == 0 ); 724 res = ( ::system ( "apm --suspend" ) == 0 );
@@ -734,9 +735,10 @@ bool Zaurus::suspend() {
734 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < m_timeOut ); 735 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < m_timeOut );
735 } 736 }
736 737
737 { 738 {
738 QCopEnvelope( "QPE/System", "returnFromSuspend()" ); 739 QCopEnvelope( "QPE/System", "returnFromSuspend()" );
739 } 740 }
741 qApp->processEvents(); // ensure the qcop call is being processed asap
740 742
741 return res; 743 return res;
742} 744}