mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-01 08:04:22 +08:00
16 lines
279 B
C
16 lines
279 B
C
|
// 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);
|
||
|
}
|