blob: 7de8f362da7ffa61fe9fa7a8a874560472a3d62a [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <lib/async-loop/cpp/loop.h>
#include <src/lib/fxl/command_line.h>
#include <src/lib/fxl/log_settings_command_line.h>
#include <src/lib/fxl/logging.h>
#include <trace-provider/provider.h>
#include "src/developer/memory/monitor/monitor.h"
int main(int argc, const char** argv) {
auto command_line = fxl::CommandLineFromArgcArgv(argc, argv);
if (!fxl::SetLogSettingsFromCommandLine(command_line))
return 1;
FXL_VLOG(2) << argv[0] << ": starting";
async::Loop loop(&kAsyncLoopConfigAttachToThread);
trace::TraceProviderWithFdio trace_provider(loop.dispatcher(), monitor::Monitor::kTraceName);
monitor::Monitor app(sys::ComponentContext::Create(), command_line, loop.dispatcher());
loop.Run();
FXL_VLOG(2) << argv[0] << ": exiting";
return 0;
}