From b304edb0b1f45ec7d4f10cfbff1b91f50bca86e4 Mon Sep 17 00:00:00 2001 From: Alex Ray Date: Tue, 30 Jul 2013 12:48:57 -0700 Subject: remove libutils libutils is being moved from frameworks/native/ to system/core/ in order to facilitate native C++ platform (non-frameworks) code. Change-Id: I44089fb960591a40b8a9c30faabb10459d107d71 --- libs/utils/Static.cpp | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 libs/utils/Static.cpp (limited to 'libs/utils/Static.cpp') diff --git a/libs/utils/Static.cpp b/libs/utils/Static.cpp deleted file mode 100644 index 3ed07a10c1..0000000000 --- a/libs/utils/Static.cpp +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (C) 2008 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// All static variables go here, to control initialization and -// destruction order in the library. - -namespace android { - -// For String8.cpp -extern void initialize_string8(); -extern void terminate_string8(); - -// For String16.cpp -extern void initialize_string16(); -extern void terminate_string16(); - -class LibUtilsFirstStatics -{ -public: - LibUtilsFirstStatics() - { - initialize_string8(); - initialize_string16(); - } - - ~LibUtilsFirstStatics() - { - terminate_string16(); - terminate_string8(); - } -}; - -static LibUtilsFirstStatics gFirstStatics; -int gDarwinCantLoadAllObjects = 1; - -} // namespace android -- cgit v1.2.3-59-g8ed1b