================ @@ -0,0 +1,34 @@ +//===-- AddressSpace.h ----------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#ifndef LLDB_UTILITY_ADDRESSSPACE_H +#define LLDB_UTILITY_ADDRESSSPACE_H + +#include "lldb/lldb-types.h" +#include "llvm/Support/JSON.h" +#include <string> +#include <vector> + +namespace lldb_private { + +/// A single address space reported by a process (see the "jAddressSpacesInfo" +/// packet in docs/resources/lldbgdbremote.md). +struct AddressSpaceInfo { + std::string name; + uint64_t value = 0; ---------------- satyajanga wrote:
agree. I also renamed the field in the protocol in json to `space_id` https://github.com/llvm/llvm-project/pull/206370 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
