blob: 6bd793c1adf8e33c329abb84aa8d3162f4bef782 [file] [log] [blame]
// Copyright 2021 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 "src/developer/debug/debug_agent/mock_component_manager.h"
namespace debug_agent {
zx_status_t MockComponentManager::LaunchComponent(DebuggedJob* root_job,
const std::vector<std::string>& argv,
uint64_t* component_id) {
*component_id = 0;
return ZX_ERR_NOT_SUPPORTED;
}
uint64_t MockComponentManager::OnProcessStart(const std::string& filter, StdioHandles& out_stdio) {
return 0;
}
} // namespace debug_agent