summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2015-04-06 18:01:38 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-04-06 18:01:39 +0000
commit08fe38e23bad476be9dd46bf45ece1b5f3700178 (patch)
treeb73c8474960b87cb5d09ca270fc8dfce3cfbf6bb
parentb137dab48c26c7aedfe2ec753d2e600a6a122a74 (diff)
parent628620c7bae0d72fbe7b472c1f14aa239e26931e (diff)
downloadsystem_core-08fe38e23bad476be9dd46bf45ece1b5f3700178.zip
system_core-08fe38e23bad476be9dd46bf45ece1b5f3700178.tar.gz
system_core-08fe38e23bad476be9dd46bf45ece1b5f3700178.tar.bz2
Merge "Allow inputflinger to have CAP_BLOCK_SUSPEND."
-rw-r--r--include/private/android_filesystem_capability.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/private/android_filesystem_capability.h b/include/private/android_filesystem_capability.h
index 0505cda..b92d3db 100644
--- a/include/private/android_filesystem_capability.h
+++ b/include/private/android_filesystem_capability.h
@@ -105,7 +105,9 @@ struct vfs_cap_data {
#define CAP_MAC_ADMIN 33
#define CAP_SYSLOG 34
#define CAP_WAKE_ALARM 35
-#define CAP_LAST_CAP CAP_WAKE_ALARM
+#define CAP_BLOCK_SUSPEND 36
+#define CAP_AUDIT_READ 37
+#define CAP_LAST_CAP CAP_AUDIT_READ
#define cap_valid(x) ((x) >= 0 && (x) <= CAP_LAST_CAP)
#define CAP_TO_INDEX(x) ((x) >> 5)
#define CAP_TO_MASK(x) (1 << ((x) & 31))