summaryrefslogtreecommitdiff
path: root/core/opiealarm/opiealarm.c
authorkergoth <kergoth>2002-12-10 21:07:10 (UTC)
committer kergoth <kergoth>2002-12-10 21:07:10 (UTC)
commit51f44c6a22971d6f60f5e36523d9efbeaa8aec55 (patch) (unidiff)
tree3c299e1564146f4c10f90dae3f8ab97477752971 /core/opiealarm/opiealarm.c
parentd7ade26d9b84c5347b39891f97fbf12f440d86f0 (diff)
downloadopie-51f44c6a22971d6f60f5e36523d9efbeaa8aec55.zip
opie-51f44c6a22971d6f60f5e36523d9efbeaa8aec55.tar.gz
opie-51f44c6a22971d6f60f5e36523d9efbeaa8aec55.tar.bz2
slight bit of rearranging to ensure that the rtc time gets set if using -s regardless of whether resumeat contains a valid alarm
Diffstat (limited to 'core/opiealarm/opiealarm.c') (more/less context) (show whitespace changes)
-rw-r--r--core/opiealarm/opiealarm.c53
1 files changed, 32 insertions, 21 deletions
diff --git a/core/opiealarm/opiealarm.c b/core/opiealarm/opiealarm.c
index bb2e684..5ea24b7 100644
--- a/core/opiealarm/opiealarm.c
+++ b/core/opiealarm/opiealarm.c
@@ -222,19 +222,2 @@ int suspend ( int fix_rtc )
222 222
223 do { // try/catch simulation
224
225 // read the wakeup time from /etc/resumeat
226 if (!( fp = fopen ( "/etc/resumeat", "r" )))
227 break; // ( 1, "/etc/resumeat" );
228
229 if ( !fgets ( buf, sizeof( buf ) - 1, fp ))
230 break; // ( 1, "/etc/resumeat" );
231
232 fclose ( fp );
233
234 alrt = atoi ( buf ); // get the alarm time
235 if ( alrt == 0 )
236 break; // ( 0, "/etc/resumeat contains an invalid time description" );
237 alrt -= 5; // wake up 5 sec before the specified time
238 alr = *gmtime ( &alrt );
239
240 time ( &syst );// get the UNIX system time 223 time ( &syst );// get the UNIX system time
@@ -242,2 +225,4 @@ int suspend ( int fix_rtc )
242 225
226 do {
227
243 if (( fd = open ( "/dev/misc/rtc", O_RDWR )) < 0 ) 228 if (( fd = open ( "/dev/misc/rtc", O_RDWR )) < 0 )
@@ -247,4 +232,6 @@ int suspend ( int fix_rtc )
247 memset ( &rtc, 0, sizeof ( struct tm )); // get the RTC time 232 memset ( &rtc, 0, sizeof ( struct tm )); // get the RTC time
233
248 if ( ioctl ( fd, RTC_RD_TIME, &rtc ) < 0 ) 234 if ( ioctl ( fd, RTC_RD_TIME, &rtc ) < 0 )
249 break; // ( 1, "ioctl RTC_RD_TIME" ); 235 break; // ( 1, "ioctl RTC_RD_TIME" );
236
250 rtct = mktime ( &rtc ); 237 rtct = mktime ( &rtc );
@@ -264,4 +251,22 @@ int suspend ( int fix_rtc )
264 251
252 // read the wakeup time from /etc/resumeat
253 if (!( fp = fopen ( "/etc/resumeat", "r" )))
254 break; // ( 1, "/etc/resumeat" );
255
256 if ( !fgets ( buf, sizeof( buf ) - 1, fp ))
257 break; // ( 1, "/etc/resumeat" );
258
259 fclose ( fp );
260
261 alrt = atoi ( buf ); // get the alarm time
262
263 if ( alrt == 0 )
264 break; // ( 0, "/etc/resumeat contains an invalid time description" );
265 alrt -= 5; // wake up 5 sec before the specified time
266
267 alr = *gmtime ( &alrt );
268
265 if ( ioctl ( fd, RTC_ALM_SET, &alr ) < 0 ) // set RTC alarm time 269 if ( ioctl ( fd, RTC_ALM_SET, &alr ) < 0 ) // set RTC alarm time
266 break; // ( 1, "ioctl RTC_ALM_SET" ); 270 break; // ( 1, "ioctl RTC_ALM_SET" );
271
267 if ( ioctl ( fd, RTC_AIE_ON, 0 ) < 0 ) 272 if ( ioctl ( fd, RTC_AIE_ON, 0 ) < 0 )
@@ -283,8 +288,15 @@ int suspend ( int fix_rtc )
283 288
284 remove_pidfile ( ); // normal exit 289 remove_pidfile ( );
290
285 return 0; 291 return 0;
286 292
287 } while ( 0 ); 293 } while ( 0 )
288 294
289 kill ( parent_pid, SIGUSR1 ); // parent is still running - it can exit now 295 if ( fp != NULL )
296 fclose ( fp );
297
298 if ( fd != -1 )
299 close ( fd );
300
301 kill ( parent_pid, SIGUSR1 );
290 302
@@ -295,3 +307,2 @@ int suspend ( int fix_rtc )
295 307
296
297int onac ( void ) 308int onac ( void )