(describe-buffer-case-table): Set help-mode in *Help* buffer.
[bpt/emacs.git] / lib-src / wakeup.c
CommitLineData
58fd8a81
DM
1/* Program to produce output at regular intervals. */
2
18160b98 3#include <config.h>
af40bbfa 4
58fd8a81 5#include <stdio.h>
11e5be7d 6#include <sys/types.h>
af40bbfa
JB
7
8#ifdef TIME_WITH_SYS_TIME
2198e8fe 9#include <sys/time.h>
af40bbfa
JB
10#include <time.h>
11#else
12#ifdef HAVE_SYS_TIME_H
13#include <sys/time.h>
14#else
15#include <time.h>
16#endif
17#endif
58fd8a81
DM
18
19struct tm *localtime ();
20
340ff9de 21void
58fd8a81
DM
22main (argc, argv)
23 int argc;
24 char **argv;
25{
26 int period = 60;
1da14ffd 27 time_t when;
58fd8a81
DM
28 struct tm *tp;
29
30 if (argc > 1)
31 period = atoi (argv[1]);
32
33 while (1)
34 {
7fb0d26f
JB
35 /* Make sure wakeup stops when Emacs goes away. */
36 if (getppid () == 1)
37 exit (0);
58fd8a81
DM
38 printf ("Wake up!\n");
39 fflush (stdout);
40 /* If using a period of 60, produce the output when the minute
41 changes. */
42 if (period == 60)
43 {
44 time (&when);
45 tp = localtime (&when);
46 sleep (60 - tp->tm_sec);
47 }
48 else
49 sleep (period);
50 }
51}