1990-08-08 03:52:54 +00:00
|
|
|
/* Program to produce output at regular intervals. */
|
|
|
|
|
1996-04-28 19:09:03 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
1993-09-10 06:15:46 +00:00
|
|
|
#include <config.h>
|
1996-04-28 19:09:03 +00:00
|
|
|
#endif
|
1993-07-18 06:13:07 +00:00
|
|
|
|
1990-08-08 03:52:54 +00:00
|
|
|
#include <stdio.h>
|
1993-06-08 07:15:01 +00:00
|
|
|
#include <sys/types.h>
|
1993-07-18 06:13:07 +00:00
|
|
|
|
|
|
|
#ifdef TIME_WITH_SYS_TIME
|
1993-06-03 03:28:21 +00:00
|
|
|
#include <sys/time.h>
|
1993-07-18 06:13:07 +00:00
|
|
|
#include <time.h>
|
|
|
|
#else
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
#else
|
|
|
|
#include <time.h>
|
|
|
|
#endif
|
|
|
|
#endif
|
1990-08-08 03:52:54 +00:00
|
|
|
|
|
|
|
struct tm *localtime ();
|
|
|
|
|
1994-10-12 20:21:51 +00:00
|
|
|
void
|
1990-08-08 03:52:54 +00:00
|
|
|
main (argc, argv)
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
{
|
|
|
|
int period = 60;
|
1993-05-31 01:39:40 +00:00
|
|
|
time_t when;
|
1990-08-08 03:52:54 +00:00
|
|
|
struct tm *tp;
|
|
|
|
|
|
|
|
if (argc > 1)
|
|
|
|
period = atoi (argv[1]);
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
1991-07-30 21:04:22 +00:00
|
|
|
/* Make sure wakeup stops when Emacs goes away. */
|
|
|
|
if (getppid () == 1)
|
|
|
|
exit (0);
|
1990-08-08 03:52:54 +00:00
|
|
|
printf ("Wake up!\n");
|
|
|
|
fflush (stdout);
|
|
|
|
/* If using a period of 60, produce the output when the minute
|
|
|
|
changes. */
|
|
|
|
if (period == 60)
|
|
|
|
{
|
|
|
|
time (&when);
|
|
|
|
tp = localtime (&when);
|
|
|
|
sleep (60 - tp->tm_sec);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
sleep (period);
|
|
|
|
}
|
|
|
|
}
|