diff options
| author | 2022-08-24 23:53:17 +0000 | |
|---|---|---|
| committer | 2022-08-24 23:53:17 +0000 | |
| commit | b307e3ffa6b79df89aea53a8646e6f5007a8a4ac (patch) | |
| tree | d303e851fad62eabf0f9f365be032a0aea4efd59 | |
| parent | f5ade4913585cfdd720fd31be3c43745621bbccc (diff) | |
| parent | 2509e91221943bd7e6e666cc8b15699905d59b96 (diff) | |
Merge "Remove binder_extended_error structure." am: b125642ba6 am: e7a2c404fc am: ec459f917c am: 2509e91221
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2193704
Change-Id: Icecc51f8a44169d182ba3d8fd8ae546f443717d5
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | libs/binder/binder_module.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/libs/binder/binder_module.h b/libs/binder/binder_module.h index 7574c29e8b..793795e1d4 100644 --- a/libs/binder/binder_module.h +++ b/libs/binder/binder_module.h @@ -100,23 +100,4 @@ struct binder_frozen_status_info { #define BINDER_ENABLE_ONEWAY_SPAM_DETECTION _IOW('b', 16, __u32) #endif // BINDER_ENABLE_ONEWAY_SPAM_DETECTION -#ifndef BINDER_GET_EXTENDED_ERROR -/* struct binder_extened_error - extended error information - * @id: identifier for the failed operation - * @command: command as defined by binder_driver_return_protocol - * @param: parameter holding a negative errno value - * - * Used with BINDER_GET_EXTENDED_ERROR. This extends the error information - * returned by the driver upon a failed operation. Userspace can pull this - * data to properly handle specific error scenarios. - */ -struct binder_extended_error { - __u32 id; - __u32 command; - __s32 param; -}; - -#define BINDER_GET_EXTENDED_ERROR _IOWR('b', 17, struct binder_extended_error) -#endif // BINDER_GET_EXTENDED_ERROR - #endif // _BINDER_MODULE_H_ |