]> git.ozlabs.org Git - petitboot/blob - discover/user-event.h
test/lib: Implement process_init change in testcases
[petitboot] / discover / user-event.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_DISCOVER_USER_EVENT_H)
20 #define _PB_DISCOVER_USER_EVENT_H
21
22 #include "device-handler.h"
23
24 #define PBOOT_USER_EVENT_SOCKET "/tmp/petitboot.ev"
25 #define PBOOT_USER_EVENT_SIZE (1 * 1024)
26
27 struct user_event;
28 struct waitset;
29
30 struct user_event *user_event_init(struct waitset *waitset,
31                 struct device_handler *handler);
32 void user_event_destroy(struct user_event *uev);
33
34 #endif