mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-23 01:33:06 +00:00
286c09844e
I recently hit a couple of CI failures caused by relying on transitive includes that weren't always present. include-what-you-use is a Clang-based tool that helps with this. It's a bit finicky and noisy, so this adds scripts/iwyu.py to make running it more convenient (but not reliable enough to automate it in Travis). This cleans up all reasonable include-what-you-use warnings and reorganizes a few header files. Signed-off-by: Omar Sandoval <osandov@osandov.com>
36 lines
730 B
C
36 lines
730 B
C
// Copyright (c) Facebook, Inc. and its affiliates.
|
|
// SPDX-License-Identifier: GPL-3.0+
|
|
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "symbol.h"
|
|
#include "util.h"
|
|
|
|
LIBDRGN_PUBLIC void drgn_symbol_destroy(struct drgn_symbol *sym)
|
|
{
|
|
free(sym);
|
|
}
|
|
|
|
LIBDRGN_PUBLIC const char *drgn_symbol_name(struct drgn_symbol *sym)
|
|
{
|
|
return sym->name;
|
|
}
|
|
|
|
LIBDRGN_PUBLIC uint64_t drgn_symbol_address(struct drgn_symbol *sym)
|
|
{
|
|
return sym->address;
|
|
}
|
|
|
|
LIBDRGN_PUBLIC uint64_t drgn_symbol_size(struct drgn_symbol *sym)
|
|
{
|
|
return sym->size;
|
|
}
|
|
|
|
LIBDRGN_PUBLIC bool drgn_symbol_eq(struct drgn_symbol *a, struct drgn_symbol *b)
|
|
{
|
|
return (strcmp(a->name, b->name) == 0 && a->address == b->address &&
|
|
a->size == b->size);
|
|
}
|