diff options
author | 2009-05-18 15:08:03 -0700 | |
---|---|---|
committer | 2009-05-20 12:55:02 -0700 | |
commit | 25ba5b6564224dceefa086b5c439ef28dad530ca (patch) | |
tree | af3c9fa40d27425c37cf6492589cb86854b08f8a /libs/utils/Static.cpp | |
parent | 6b961bb54bfb44abd1bcee46924ca38c2d10dd72 (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 93f7e4f0c476..4dfa57830ce3 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 |