LingmoOS-kernel/tools/perf/util/map_symbol.c

16 lines
279 B
C
Raw Normal View History

2024-07-18 03:58:23 +00:00
// SPDX-License-Identifier: GPL-2.0
#include "map_symbol.h"
#include "maps.h"
#include "map.h"
void map_symbol__exit(struct map_symbol *ms)
{
maps__zput(ms->maps);
map__zput(ms->map);
}
void addr_map_symbol__exit(struct addr_map_symbol *ams)
{
map_symbol__exit(&ams->ms);
}