diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-09-03 11:40:42 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-09-03 11:40:42 -0700 |
commit | fbd9b87feab649dc7410711ceaa589e5f058c753 (patch) | |
tree | eefde20bc9f7340f8f11fce433f101228bbb1cd9 /core | |
parent | 704a488ef5f5b50ed82332cbff8d6d982ac09118 (diff) | |
parent | d42685d5de1dbd6d75b48d42418f370adaa4daef (diff) | |
download | frameworks_base-fbd9b87feab649dc7410711ceaa589e5f058c753.zip frameworks_base-fbd9b87feab649dc7410711ceaa589e5f058c753.tar.gz frameworks_base-fbd9b87feab649dc7410711ceaa589e5f058c753.tar.bz2 |
Merge change 23807 into eclair
* changes:
Add support for running apps with uid/gid AID_LOG by specifying android.uid.log in the manifest
Diffstat (limited to 'core')
-rw-r--r-- | core/java/android/os/Process.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/android/os/Process.java b/core/java/android/os/Process.java index 980cff3..699ddb2 100644 --- a/core/java/android/os/Process.java +++ b/core/java/android/os/Process.java @@ -74,6 +74,12 @@ public class Process { public static final int SHELL_UID = 2000; /** + * Defines the UID/GID for the log group. + * @hide + */ + public static final int LOG_UID = 1007; + + /** * Defines the UID/GID for the WIFI supplicant process. * @hide */ |