diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-11-02 17:55:43 -0500 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-11-02 17:55:43 -0500 |
commit | 1bd16a1511d43fc5b109f500d67b916776e8cce3 (patch) | |
tree | 1226b851c99fd9e2ba193ae29992f403c92d6403 /include | |
parent | a9888b50aa9fc7056c9d69273cd900919b70f7bc (diff) | |
parent | 0db1a8931bb24b4f240c19210e70844af8c1e9ff (diff) | |
download | frameworks_native-1bd16a1511d43fc5b109f500d67b916776e8cce3.zip frameworks_native-1bd16a1511d43fc5b109f500d67b916776e8cce3.tar.gz frameworks_native-1bd16a1511d43fc5b109f500d67b916776e8cce3.tar.bz2 |
Merge change Ibaef6141 into eclair
* changes:
libbinder: add a NO_CACHING flag to MemoryHeapBase
Diffstat (limited to 'include')
-rw-r--r-- | include/binder/MemoryHeapBase.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/binder/MemoryHeapBase.h b/include/binder/MemoryHeapBase.h index 435540e..d793c24 100644 --- a/include/binder/MemoryHeapBase.h +++ b/include/binder/MemoryHeapBase.h @@ -35,7 +35,8 @@ public: MAP_ONCE = IMemoryHeap::MAP_ONCE, // memory won't be mapped locally, but will be mapped in the remote // process. - DONT_MAP_LOCALLY = 0x00000100 + DONT_MAP_LOCALLY = 0x00000100, + NO_CACHING = 0x00000200 }; /* |