From d98e07fdf9c338589f263c47ce5c844ed43efad5 Mon Sep 17 00:00:00 2001 From: Alex Ray Date: Fri, 2 Aug 2013 14:40:08 -0700 Subject: move libs/utils to libutils Change-Id: I6cf4268599460791414882f91eeb88a992fbd29d --- libutils/Trace.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 libutils/Trace.cpp (limited to 'libutils/Trace.cpp') diff --git a/libutils/Trace.cpp b/libutils/Trace.cpp new file mode 100644 index 0000000..36fd802 --- /dev/null +++ b/libutils/Trace.cpp @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2012 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. + */ + +#include +#include + +static void traceInit() __attribute__((constructor)); + +static void traceInit() +{ + ::android::add_sysprop_change_callback(atrace_update_tags, 0); +} -- cgit v1.1