]> git.neil.brown.name Git - susman.git/blob - susman.c
wakealarmd: cope with delta between system time and RTC time.
[susman.git] / susman.c
1 /*
2  * susman - manage suspend
3  * This daemon forks and runs three processes
4  * - one which manages suspend based on files in /run/suspend
5  * - one which listens on a socket and handles suspend requests that way,
6  * - one which provides a wakeup service using the RTC alarm.
7  *
8  * Copyright (C) 2011 Neil Brown <neilb@suse.de>
9  *
10  *    This program is free software; you can redistribute it and/or modify
11  *    it under the terms of the GNU General Public License as published by
12  *    the Free Software Foundation; either version 2 of the License, or
13  *    (at your option) any later version.
14  *
15  *    This program is distributed in the hope that it will be useful,
16  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *    GNU General Public License for more details.
19  *
20  *    You should have received a copy of the GNU General Public License along
21  *    with this program; if not, write to the Free Software Foundation, Inc.,
22  *    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  */
24 #define _GNU_SOURCE
25 #include <unistd.h>
26 #include <stdlib.h>
27
28 int lsusd(int argc, char *argv[]);
29 int lsused(int argc, char *argv[]);
30 int wakealarmd(int argc, char *argv[]);
31
32 void runone(int (*fun)(int argc, char *argv[]))
33 {
34         int pfd[2];
35         char c;
36
37         if (pipe(pfd) < 0)
38                 exit(2);
39         switch (fork()) {
40         case -1:
41                 exit (2);
42         default:
43                 break;
44         case 0:
45                 close(pfd[0]);
46                 dup2(pfd[1], 0);
47                 close(pfd[1]);
48                 (*fun)(0, NULL);
49                 exit(1);
50         }
51         close(pfd[1]);
52         /* Block for lsused to start up */
53         read(pfd[0], &c, 1);
54         close(pfd[0]);
55 }
56
57 int main(int argc, char *argv[])
58 {
59         int pfd[2];
60         char c;
61
62         runone(lsusd);
63         runone(lsused);
64         wakealarmd(0, NULL);
65         exit(0);
66 }