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 17 #ifndef ANDROID_HARDWARE_BINDER_KERNEL_H 18 #define ANDROID_HARDWARE_BINDER_KERNEL_H 19 20 // TODO(b/31559095): bionic on host 21 #ifndef __ANDROID__ 22 #define __packed __attribute__((__packed__)) 23 #endif 24 25 #include <sys/ioctl.h> 26 #include <linux/android/binder.h> 27 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 42 #endif // ANDROID_HARDWARE_BINDER_KERNEL_H 43