diff options
author | Dianne Hackborn <hackbod@google.com> | 2011-09-28 23:19:47 -0400 |
---|---|---|
committer | Alex Ray <aray@google.com> | 2013-07-30 13:56:58 -0700 |
commit | 6c31a2fb6080049e444b4aac71b037eccd0d3ddc (patch) | |
tree | 7ad20355799170a4ba099a444984dcd0374e2606 /include | |
parent | 9c63a80f1f39fb969ec439e6b51614abb883d370 (diff) | |
download | core-6c31a2fb6080049e444b4aac71b037eccd0d3ddc.tar.gz core-6c31a2fb6080049e444b4aac71b037eccd0d3ddc.tar.bz2 core-6c31a2fb6080049e444b4aac71b037eccd0d3ddc.zip |
Add mechanism for Parcel to not allow FDs to be written to it.
This is to help implement issue #5224703.
Change-Id: I026a5890495537d15b57fe61227a640aac806d46
Diffstat (limited to 'include')
-rw-r--r-- | include/utils/Errors.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/utils/Errors.h b/include/utils/Errors.h index 81f818b75..0b75b1926 100644 --- a/include/utils/Errors.h +++ b/include/utils/Errors.h @@ -72,6 +72,7 @@ enum { TIMED_OUT = 0x80000005, UNKNOWN_TRANSACTION = 0x80000006, #endif + FDS_NOT_ALLOWED = 0x80000007, }; // Restore define; enumeration is in "android" namespace, so the value defined |