blob: d735f94f949b4ec7a10b643364e6778d31b4a816 [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.
#ifndef SRC_DEVELOPER_DEBUG_SHARED_ARCH_H_
#define SRC_DEVELOPER_DEBUG_SHARED_ARCH_H_
#include <stdint.h>
namespace debug {
// Only append to this list, the values are encoded in the IPC protocol which has stability
// guarantees.
enum class Arch : uint32_t {
kUnknown = 0,
kX64,
kArm64,
kRiscv64,
};
const char* ArchToString(Arch a);
} // namespace debug
#endif // SRC_DEVELOPER_DEBUG_SHARED_ARCH_H_