diff options
author | Tom Cherry <tomcherry@google.com> | 2017-06-23 23:19:53 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-06-23 23:19:53 +0000 |
commit | b57e1180e36e44b78f45c03d98d62c22754d591c (patch) | |
tree | d87252e55756a56380cde35c6fbca9042b1c7723 /init/bootchart.cpp | |
parent | 56f021f0a40a88cfa98c432f8ee4f43e25e301df (diff) | |
parent | d3d79b21968139b135ca24b13dd400494fe73965 (diff) |
Merge "init: create android::init:: namespace" am: 040212706b
am: d3d79b2196
Change-Id: I3dccff251dda7d7452e33a7e71178c59f0c22169
Diffstat (limited to 'init/bootchart.cpp')
-rw-r--r-- | init/bootchart.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/init/bootchart.cpp b/init/bootchart.cpp index 825603a9a..4727f92e9 100644 --- a/init/bootchart.cpp +++ b/init/bootchart.cpp @@ -40,6 +40,9 @@ using android::base::StringPrintf; using namespace std::chrono_literals; +namespace android { +namespace init { + static std::thread* g_bootcharting_thread; static std::mutex g_bootcharting_finished_mutex; @@ -192,3 +195,6 @@ int do_bootchart(const std::vector<std::string>& args) { if (args[1] == "start") return do_bootchart_start(); return do_bootchart_stop(); } + +} // namespace init +} // namespace android |