-rw-r--r-- | libopie/odevice.cpp | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp index 2d2f7db..d8415ad 100644 --- a/libopie/odevice.cpp +++ b/libopie/odevice.cpp @@ -201,10 +201,5 @@ bool ODevice::suspend ( ) - int fd; bool res = false; - if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) || - (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) { struct timeval tvs, tvn; - -// ::signal ( SIGTSTP, SIG_IGN ); // we don't want to be stopped ::gettimeofday ( &tvs, 0 ); @@ -212,9 +207,9 @@ bool ODevice::suspend ( ) ::sync ( ); // flush fs caches + res = ( ::system ( "apm --suspend" ) == 0 ); - res = ( ::ioctl ( fd, APM_IOC_SUSPEND, 0 ) == 0 ); // tell the kernel to "start" suspending - ::close ( fd ); + // This is needed because the iPAQ apm implementation is asynchronous and we + // can not be sure when exactly the device is really suspended + // This can be deleted as soon as a stable familiar with a synchronous apm implementation exists. if ( res ) { -// ::kill ( -::getpid ( ), SIGTSTP ); // stop everthing in our process group - do { // wait at most 1.5 sec: either suspend didn't work or the device resumed @@ -223,7 +218,2 @@ bool ODevice::suspend ( ) } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 1500 ); - -// ::kill ( -::getpid ( ), SIGCONT ); // continue everything in our process group - } - -// ::signal ( SIGTSTP, SIG_DFL ); } |