]> git.ozlabs.org Git - petitboot/blob - ui/common/timer.h
Add PS3 countdown timer
[petitboot] / ui / common / timer.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_TIMER_H)
20 #define _PB_UI_TIMER_H
21
22 #include <signal.h>
23
24 /**
25  * struct ui_timer - UI timeout.
26  */
27
28 struct ui_timer {
29         unsigned int timeout;
30         unsigned int disabled;
31         sig_atomic_t signaled;
32         void (*update_display)(struct ui_timer *timer, unsigned int timeout);
33         void (*handle_timeout)(struct ui_timer *timer);
34 };
35
36 void ui_timer_init(struct ui_timer *timer, unsigned int seconds);
37 void ui_timer_kick(struct ui_timer *timer);
38 void ui_timer_disable(struct ui_timer *timer);
39 void ui_timer_sigalrm(struct ui_timer *timer);
40 void ui_timer_process_sig(struct ui_timer *timer);
41
42 #endif