]> git.ozlabs.org Git - petitboot/blob - ui/common/ui-system.h
discover/grub2: Allow EOF as a statement terminator
[petitboot] / ui / common / ui-system.h
1 /*
2  *  Copyright (C) 2009 Sony Computer Entertainment Inc.
3  *  Copyright 2009 Sony Corp.
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; version 2 of the License.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #if !defined(_PB_UI_SYSTEM_H)
20 #define _PB_UI_SYSTEM_H
21
22 #include <stdint.h>
23
24 #include "system/system.h"
25 #include "types/types.h"
26 #include "ui/common/timer.h"
27 #include "ui/common/discover-client.h"
28
29 #include <signal.h>
30
31 int pb_start_daemon(void *ctx);
32
33 unsigned int pb_elf_hash(const char *str);
34 unsigned int pb_cat_hash(const char *a, const char *b);
35
36 static inline uint32_t pb_opt_hash(const struct device *dev,
37         const struct boot_option *opt)
38 {
39         return pb_cat_hash(dev->name, opt->name);
40 }
41
42 struct pb_opt_data {
43         const char *name;
44         struct pb_boot_data *bd;
45
46         /* optional data */
47         const struct device *dev;
48         const struct boot_option *opt;
49         uint32_t opt_hash;
50 };
51
52 struct pb_signal_data {
53         sig_atomic_t abort;
54         sig_atomic_t resize;
55         struct ui_timer timer;
56 };
57
58 #endif