blob: f5c9dd43e88ef9b6c6db41e6b3abb935bdb7f450 [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