blob: 2695f51210c0c43121d5e36da6f9269462d3ed8e [file] [log] [blame]
Martijn Coenen249b02b2016-07-28 16:25:10 +02001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Martijn Coenenf75a23d2016-08-01 11:55:17 +020017#ifndef ANDROID_HARDWARE_BINDER_KERNEL_H
18#define ANDROID_HARDWARE_BINDER_KERNEL_H
Martijn Coenen249b02b2016-07-28 16:25:10 +020019
Steven Morelandd9bdb652019-09-17 15:42:45 -070020// TODO(b/31559095): bionic on host
21#ifndef __ANDROID__
22#define __packed __attribute__((__packed__))
23#endif
24
Hang Lud1388da2021-03-24 14:30:06 +080025#include <sys/ioctl.h>
Martijn Coenen249b02b2016-07-28 16:25:10 +020026#include <linux/android/binder.h>
27
Hang Lud1388da2021-03-24 14:30:06 +080028#ifndef BR_ONEWAY_SPAM_SUSPECT
29// Temporary definition of BR_ONEWAY_SPAM_SUSPECT. For production
30// this will come from UAPI binder.h
31#define BR_ONEWAY_SPAM_SUSPECT _IO('r', 19)
32#endif //BR_ONEWAY_SPAM_SUSPECT
33
34#ifndef BINDER_ENABLE_ONEWAY_SPAM_DETECTION
35/*
36 * Temporary definitions for oneway spam detection support. For the final version
37 * these will be defined in the UAPI binder.h file from upstream kernel.
38 */
39#define BINDER_ENABLE_ONEWAY_SPAM_DETECTION _IOW('b', 16, __u32)
40#endif //BINDER_ENABLE_ONEWAY_SPAM_DETECTION
41
Martijn Coenenf75a23d2016-08-01 11:55:17 +020042#endif // ANDROID_HARDWARE_BINDER_KERNEL_H