Martijn Coenen | 249b02b | 2016-07-28 16:25:10 +0200 | [diff] [blame] | 1 | /* |
| 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 Coenen | f75a23d | 2016-08-01 11:55:17 +0200 | [diff] [blame] | 17 | #ifndef ANDROID_HARDWARE_BINDER_KERNEL_H |
| 18 | #define ANDROID_HARDWARE_BINDER_KERNEL_H |
Martijn Coenen | 249b02b | 2016-07-28 16:25:10 +0200 | [diff] [blame] | 19 | |
Steven Moreland | d9bdb65 | 2019-09-17 15:42:45 -0700 | [diff] [blame] | 20 | // TODO(b/31559095): bionic on host |
| 21 | #ifndef __ANDROID__ |
| 22 | #define __packed __attribute__((__packed__)) |
| 23 | #endif |
| 24 | |
Hang Lu | d1388da | 2021-03-24 14:30:06 +0800 | [diff] [blame] | 25 | #include <sys/ioctl.h> |
Martijn Coenen | 249b02b | 2016-07-28 16:25:10 +0200 | [diff] [blame] | 26 | #include <linux/android/binder.h> |
| 27 | |
Hang Lu | d1388da | 2021-03-24 14:30:06 +0800 | [diff] [blame] | 28 | #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 Coenen | f75a23d | 2016-08-01 11:55:17 +0200 | [diff] [blame] | 42 | #endif // ANDROID_HARDWARE_BINDER_KERNEL_H |