2bf708c1f75f9a22d5312b326f372900ab5ba4e8
[iec.git] / src / type3_AndroidCloud / anbox-master / src / anbox / common / binderfs.h
1 /*
2  * Copyright (C) 2018 Canonical Ltd.
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License version 3, as published
6  * by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranties of
10  * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
11  * PURPOSE.  See the GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program.  If not, see <http://www.gnu.org/licenses/>.
15  *
16  */
17
18 #ifndef ANBOX_COMMON_BINDERFS_H_
19 #define ANBOX_COMMON_BINDERFS_H_
20
21 #include <linux/types.h>
22 #include <linux/ioctl.h>
23
24 #define BINDERFS_MAX_NAME 255
25
26 /**
27  * struct binderfs_device - retrieve information about a new binder device
28  * @name:   the name to use for the new binderfs binder device
29  * @major:  major number allocated for binderfs binder devices
30  * @minor:  minor number allocated for the new binderfs binder device
31  *
32  */
33 struct binderfs_device {
34   char name[BINDERFS_MAX_NAME + 1];
35   __u32 major;
36   __u32 minor;
37 };
38
39 /**
40  * Allocate a new binder device.
41  */
42 #define BINDER_CTL_ADD _IOWR('b', 1, struct binderfs_device)
43
44 #endif