diff options
author | Brad Fitzpatrick <bradfitz@android.com> | 2010-07-07 16:06:39 -0700 |
---|---|---|
committer | Brad Fitzpatrick <bradfitz@android.com> | 2010-07-15 13:18:05 -0700 |
commit | 727de40c6bc7c6521a0542ea9def5d5c7b1c5e06 (patch) | |
tree | 0d2f0f400211efbaf131020d7c4d38e647f5bbe3 /libs/binder/IPCThreadState.cpp | |
parent | d6343c26b8580f61a257a3045bfa124049201116 (diff) | |
download | frameworks_base-727de40c6bc7c6521a0542ea9def5d5c7b1c5e06.zip frameworks_base-727de40c6bc7c6521a0542ea9def5d5c7b1c5e06.tar.gz frameworks_base-727de40c6bc7c6521a0542ea9def5d5c7b1c5e06.tar.bz2 |
More StrictMode work, keeping Binder & BlockGuard's thread-locals in-sync.
Change-Id: Ia67cabcc17a73a0f15907ffea683d06bc41b90e5
Diffstat (limited to 'libs/binder/IPCThreadState.cpp')
-rw-r--r-- | libs/binder/IPCThreadState.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp index 28706ba..f6582e6 100644 --- a/libs/binder/IPCThreadState.cpp +++ b/libs/binder/IPCThreadState.cpp @@ -372,8 +372,8 @@ void IPCThreadState::setStrictModePolicy(int32_t policy) mStrictModePolicy = policy; } - -int32_t IPCThreadState::getStrictModePolicy() const { +int32_t IPCThreadState::getStrictModePolicy() const +{ return mStrictModePolicy; } |