author | mickeyl <mickeyl> | 2005-08-27 17:19:12 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-08-27 17:19:12 (UTC) |
commit | 85bddcabafcf7a0529e3738f306d63988b7dcbbc (patch) (side-by-side diff) | |
tree | 65f87cbffbcb42e90a47a683c68cdebf69882990 | |
parent | 193c968b94fd6db646af8a3588e90982a20e3fc5 (diff) | |
download | opie-85bddcabafcf7a0529e3738f306d63988b7dcbbc.zip opie-85bddcabafcf7a0529e3738f306d63988b7dcbbc.tar.gz opie-85bddcabafcf7a0529e3738f306d63988b7dcbbc.tar.bz2 |
call processEvents() to make it more likely^w^w^wsure the QCopEnvelope gets processed
-rw-r--r-- | libopie2/opiecore/device/odevice_abstractmobiledevice.cpp | 2 | ||||
-rw-r--r-- | libopie2/opiecore/device/odevice_zaurus.cpp | 2 |
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 @@ -61,16 +61,17 @@ bool OAbstractMobileDevice::suspend() { if ( !isQWS( ) ) // only qwsserver is allowed to 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 ); // This is needed because some apm implementations are asynchronous and we @@ -82,16 +83,17 @@ bool OAbstractMobileDevice::suspend() { ::usleep ( 200 * 1000 ); ::gettimeofday ( &tvn, 0 ); } 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 ... // _IO and friends are only defined in kernel headers ... #define OD_IOC(dir,type,number,size) (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 )) 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 @@ -710,16 +710,17 @@ bool Zaurus::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool Zaurus::suspend() { if ( !isQWS( ) ) // only qwsserver is allowed to 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 ); // This is needed because some apm implementations are asynchronous and we @@ -732,11 +733,12 @@ bool Zaurus::suspend() { ::usleep ( 200 * 1000 ); ::gettimeofday ( &tvn, 0 ); } 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; } |