blob: 37040ffd1528b6fe15d2ead9f31f16afa3b0371d [file] [log] [blame]
// Copyright 2016 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 "breakpoint.h"
#include "lib/fxl/logging.h"
namespace debugserver {
namespace arch {
bool SoftwareBreakpoint::Insert() { return false; }
bool SoftwareBreakpoint::Remove() { return false; }
bool SoftwareBreakpoint::IsInserted() const { return false; }
bool SingleStepBreakpoint::Insert() { return false; }
bool SingleStepBreakpoint::Remove() { return false; }
bool SingleStepBreakpoint::IsInserted() const { return false; }
} // namespace arch
} // namespace debugserver