summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp
Unidiff
Diffstat (limited to 'libopie2/opiecore/device/odevice_abstractmobiledevice.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_abstractmobiledevice.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp b/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp
index fe5864b..dbe9364 100644
--- a/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp
+++ b/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp
@@ -60,13 +60,15 @@ void OAbstractMobileDevice::setAPMTimeOut( int time ) {
60bool OAbstractMobileDevice::suspend() { 60bool OAbstractMobileDevice::suspend() {
61 if ( !isQWS( ) ) // only qwsserver is allowed to suspend 61 if ( !isQWS( ) ) // only qwsserver is allowed to suspend
62 return false; 62 return false;
63 63
64 bool res = false; 64 bool res = false;
65 65
66 QCopEnvelope( "QPE/System", "aboutToSuspend()" ); 66 {
67 QCopEnvelope( "QPE/System", "aboutToSuspend()" );
68 }
67 69
68 struct timeval tvs, tvn; 70 struct timeval tvs, tvn;
69 ::gettimeofday ( &tvs, 0 ); 71 ::gettimeofday ( &tvs, 0 );
70 72
71 ::sync(); // flush fs caches 73 ::sync(); // flush fs caches
72 res = ( ::system ( "apm --suspend" ) == 0 ); 74 res = ( ::system ( "apm --suspend" ) == 0 );
@@ -79,15 +81,17 @@ bool OAbstractMobileDevice::suspend() {
79 do { // wait at most 1.5 sec: either suspend didn't work or the device resumed 81 do { // wait at most 1.5 sec: either suspend didn't work or the device resumed
80 ::usleep ( 200 * 1000 ); 82 ::usleep ( 200 * 1000 );
81 ::gettimeofday ( &tvn, 0 ); 83 ::gettimeofday ( &tvn, 0 );
82 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < m_timeOut ); 84 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < m_timeOut );
83 } 85 }
84 86
85 return res; 87 {
88 QCopEnvelope( "QPE/System", "returnFromSuspend()" );
89 }
86 90
87 QCopEnvelope( "QPE/System", "returnFromSuspend()" ); 91 return res;
88} 92}
89 93
90//#include <linux/fb.h> better not rely on kernel headers in userspace ... 94//#include <linux/fb.h> better not rely on kernel headers in userspace ...
91 95
92// _IO and friends are only defined in kernel headers ... 96// _IO and friends are only defined in kernel headers ...
93#define OD_IOC(dir,type,number,size) (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 )) 97#define OD_IOC(dir,type,number,size) (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 ))