diff options
author | 2009-05-18 15:08:03 -0700 | |
---|---|---|
committer | 2009-05-20 12:55:02 -0700 | |
commit | 208059f67ed2dd9fa025e07fcb6954d3cb61c79e (patch) | |
tree | b2fde632a7c9abf4137751ffe779318c0a89bd96 /libs/utils/Static.cpp | |
parent | 501c6179e158b2d5bfc67cb8b7180c02ac301f97 (diff) |
checkpoint: split libutils into libutils + libbinder
Diffstat (limited to 'libs/utils/Static.cpp')
-rw-r--r-- | libs/utils/Static.cpp | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/libs/utils/Static.cpp b/libs/utils/Static.cpp index 93f7e4f0c4..4dfa57830c 100644 --- a/libs/utils/Static.cpp +++ b/libs/utils/Static.cpp @@ -20,7 +20,6 @@ #include <private/utils/Static.h> #include <utils/BufferedTextOutput.h> -#include <utils/IPCThreadState.h> #include <utils/Log.h> namespace android { @@ -87,34 +86,4 @@ TextOutput& alog(gLogTextOutput); TextOutput& aout(gStdoutTextOutput); TextOutput& aerr(gStderrTextOutput); -#ifndef LIBUTILS_NATIVE - -// ------------ ProcessState.cpp - -Mutex gProcessMutex; -sp<ProcessState> gProcess; - -class LibUtilsIPCtStatics -{ -public: - LibUtilsIPCtStatics() - { - } - - ~LibUtilsIPCtStatics() - { - IPCThreadState::shutdown(); - } -}; - -static LibUtilsIPCtStatics gIPCStatics; - -// ------------ ServiceManager.cpp - -Mutex gDefaultServiceManagerLock; -sp<IServiceManager> gDefaultServiceManager; -sp<IPermissionController> gPermissionController; - -#endif - } // namespace android |