summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/device/odevice_zaurus.cpp
Unidiff
Diffstat (limited to 'libopie2/opiecore/device/odevice_zaurus.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_zaurus.cpp2
1 files changed, 2 insertions, 0 deletions
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
@@ -694,49 +694,51 @@ bool Zaurus::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress,
694 if (rotation()==Rot90) { 694 if (rotation()==Rot90) {
695 newkeycode = Key_Left + ( keycode - Key_Left + 3 ) % 4; 695 newkeycode = Key_Left + ( keycode - Key_Left + 3 ) % 4;
696 } 696 }
697 } 697 }
698 break; 698 break;
699 699
700 } 700 }
701 if (newkeycode!=keycode) { 701 if (newkeycode!=keycode) {
702 if ( newkeycode != Key_unknown ) { 702 if ( newkeycode != Key_unknown ) {
703 QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat ); 703 QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat );
704 } 704 }
705 return true; 705 return true;
706 } 706 }
707 return false; 707 return false;
708} 708}
709 709
710bool Zaurus::suspend() { 710bool Zaurus::suspend() {
711 if ( !isQWS( ) ) // only qwsserver is allowed to suspend 711 if ( !isQWS( ) ) // only qwsserver is allowed to 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 );
724 725
725 // This is needed because some apm implementations are asynchronous and we 726 // This is needed because some apm implementations are asynchronous and we
726 // can not be sure when exactly the device is really suspended 727 // can not be sure when exactly the device is really suspended
727 // This can be deleted as soon as a stable familiar with a synchronous apm implementation exists. 728 // This can be deleted as soon as a stable familiar with a synchronous apm implementation exists.
728 // on non embedix eg. 2.6 kernel line apm is synchronous so we don't need it here. 729 // on non embedix eg. 2.6 kernel line apm is synchronous so we don't need it here.
729 730
730 if ( res && m_embedix) { 731 if ( res && m_embedix) {
731 do { // wait at most 1.5 sec: either suspend didn't work or the device resumed 732 do { // wait at most 1.5 sec: either suspend didn't work or the device resumed
732 ::usleep ( 200 * 1000 ); 733 ::usleep ( 200 * 1000 );
733 ::gettimeofday ( &tvn, 0 ); 734 ::gettimeofday ( &tvn, 0 );
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}