blob: aace1b060a0c872d5ab5d974e50683221a32b21e [file] [log] [blame]
// Copyright 2018 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.
#pragma once
namespace zxdb {
// Several thread controllers manage different types of stepping. This enum
// defines the possibilities.
enum class StepMode {
kAddressRange, // Steps in an address range.
kSourceLine, // Steps in the current source line.
kInstruction // Steps for the current CPU instruction.
};
} // namespace zxdb