diff options
| author | 2024-07-10 00:46:11 +0000 | |
|---|---|---|
| committer | 2024-07-10 00:46:11 +0000 | |
| commit | fd474d7a857070905aeb40daa30387e9e6b7731f (patch) | |
| tree | 17d3db0c41ad373b9193141af4770e32159b7187 | |
| parent | 7b9adabb4afc48eca29a49b716925d725b01008a (diff) | |
| parent | 309f4d0ca11228ee94af0c22fde0d2cdea350505 (diff) | |
Merge "document isBinderAlive" into main
| -rw-r--r-- | libs/binder/include/binder/IBinder.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/binder/include/binder/IBinder.h b/libs/binder/include/binder/IBinder.h index 17248ce289..4eb1c082e2 100644 --- a/libs/binder/include/binder/IBinder.h +++ b/libs/binder/include/binder/IBinder.h @@ -102,6 +102,10 @@ public: */ virtual const String16& getInterfaceDescriptor() const = 0; + /** + * Last known alive status, from last call. May be arbitrarily stale. + * May be incorrect if a service returns an incorrect status code. + */ virtual bool isBinderAlive() const = 0; virtual status_t pingBinder() = 0; virtual status_t dump(int fd, const Vector<String16>& args) = 0; |