1// Copyright 2016 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#pragma once
6
7#include <zircon/types.h>
8
9#include "utils-impl.h"
10
11struct inspector_dsoinfo {
12    struct inspector_dsoinfo* next;
13    zx_vaddr_t base;
14    char buildid[MAX_BUILDID_SIZE * 2 + 1];
15    bool debug_file_tried;
16    zx_status_t debug_file_status;
17    char* debug_file;
18    char name[];
19};
20