diff options
author | Kenny Root <kroot@google.com> | 2012-09-11 15:03:45 -0700 |
---|---|---|
committer | Kenny Root <kroot@google.com> | 2012-09-13 11:23:55 -0700 |
commit | 7e41c8420e015f6b96e35e90c8a9a8ebf643cdac (patch) | |
tree | 6e87bda06b90d8d1c5a88bfda3bd8934cdf3dd00 /include/private | |
parent | 50e2555d6c824bd3c7e664f222061158a83ac705 (diff) | |
download | system_core-7e41c8420e015f6b96e35e90c8a9a8ebf643cdac.zip system_core-7e41c8420e015f6b96e35e90c8a9a8ebf643cdac.tar.gz system_core-7e41c8420e015f6b96e35e90c8a9a8ebf643cdac.tar.bz2 |
Add shared app gid to fs config
This will allow native tools to be able to know where the shared app
gids start and end.
Change-Id: Ie4529baf36b361c51c42f079b259c352e316647f
Diffstat (limited to 'include/private')
-rw-r--r-- | include/private/android_filesystem_config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/private/android_filesystem_config.h b/include/private/android_filesystem_config.h index 6521cbe..33ecd9a 100644 --- a/include/private/android_filesystem_config.h +++ b/include/private/android_filesystem_config.h @@ -87,6 +87,9 @@ #define AID_USER 100000 /* offset for uid ranges for each user */ +#define AID_SHARED_GID_START 50000 /* start of gids for apps in each user to share */ +#define AID_SHARED_GID_END 59999 /* start of gids for apps in each user to share */ + #if !defined(EXCLUDE_FS_CONFIG_STRUCTURES) struct android_id_info { const char *name; |