libsysprof-analyze: give symbolizer access to address context

The kallsym symbol resolver will need this to short-circuit unless we're
within a kernel address context.
This commit is contained in:
Christian Hergert
2023-05-15 13:07:48 -07:00
parent 14e5cf06a5
commit 525b30a42f
7 changed files with 10 additions and 3 deletions

View File

@ -94,7 +94,8 @@ SysprofSymbol *
_sysprof_symbolizer_symbolize (SysprofSymbolizer *self,
SysprofStrings *strings,
const SysprofProcessInfo *process_info,
SysprofAddressContext context,
SysprofAddress address)
{
return SYSPROF_SYMBOLIZER_GET_CLASS (self)->symbolize (self, strings, process_info, address);
return SYSPROF_SYMBOLIZER_GET_CLASS (self)->symbolize (self, strings, process_info, context, address);
}