diff options
| -rw-r--r-- | services/core/jni/com_android_server_location_ContextHubService.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/services/core/jni/com_android_server_location_ContextHubService.cpp b/services/core/jni/com_android_server_location_ContextHubService.cpp index 47c95597b9c4..910644196c44 100644 --- a/services/core/jni/com_android_server_location_ContextHubService.cpp +++ b/services/core/jni/com_android_server_location_ContextHubService.cpp @@ -318,6 +318,15 @@ struct ContextHubServiceCallback : IContexthubCallback { return android::hardware::Void(); } + virtual Return<void> handleAppAbort(uint64_t appId, uint32_t abortCode) { + ALOGI("Handle app aport called from %" PRIx64 " with abort code %" PRIu32, + appId, + abortCode); + + // TODO: Plumb this to the clients interested in this app + return android::hardware::Void(); + } + void setContextHubId(uint32_t id) { mContextHubId = id; } |