Skip to content

Commit

Permalink
Suppress debug message when no vsyscall page was found on arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
Itaru Kitayama authored and Sasha Nicolas committed Aug 18, 2017
1 parent 4965726 commit 1ec1aac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stackwalk/src/linux-swk.C
Expand Up @@ -308,7 +308,7 @@ void SigHandlerStepperImpl::registerStepperGroup(StepperGroup *group)
vsys_info *vsyscall = getVsysInfo(ps);
if (!vsyscall)
{
#if !defined(arch_x86_64)
#if !defined(arch_x86_64) && !defined(arch_aarch64)
sw_printf("[%s:%u] - Odd. Couldn't find vsyscall page. Signal handler"
" stepping may not work\n", FILE__, __LINE__);
#endif
Expand Down

0 comments on commit 1ec1aac

Please sign in to comment.