diff options
author | Dianne Hackborn <hackbod@google.com> | 2012-02-09 11:19:00 -0800 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2012-02-09 11:19:00 -0800 |
commit | ca185abcb58582ab58805f792eb868681ebdb55e (patch) | |
tree | 893114a1aee325d66ccfb0d1d2037288f533b807 /include/private | |
parent | a8185a622e368d1957e18a3ee9d29d45eda12cfc (diff) | |
download | system_core-ca185abcb58582ab58805f792eb868681ebdb55e.zip system_core-ca185abcb58582ab58805f792eb868681ebdb55e.tar.gz system_core-ca185abcb58582ab58805f792eb868681ebdb55e.tar.bz2 |
New user definitions for isolated sandboxes.
Change-Id: I302f89c102bc35dcd70168748e205b41fdbf6576
Diffstat (limited to 'include/private')
-rw-r--r-- | include/private/android_filesystem_config.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/private/android_filesystem_config.h b/include/private/android_filesystem_config.h index ce1e55d..0344b5c 100644 --- a/include/private/android_filesystem_config.h +++ b/include/private/android_filesystem_config.h @@ -79,7 +79,12 @@ #define AID_MISC 9998 /* access to misc storage */ #define AID_NOBODY 9999 -#define AID_APP 10000 /* first app user */ +#define AID_APP 10000 /* first app user */ + +#define AID_ISOLATED_START 99000 /* start of uids for fully isolated sandboxed processes */ +#define AID_ISOLATED_END 99999 /* end of uids for fully isolated sandboxed processes */ + +#define AID_USER 100000 /* offset for uid ranges for each user */ #if !defined(EXCLUDE_FS_CONFIG_STRUCTURES) struct android_id_info { |