[Lldb-commits] [PATCH] D87868: [RFC] When calling the process mmap try to call all found instead of just the first one

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Sep 21 15:48:21 PDT 2020


clayborg added a comment.

So sounds like first we should verify if the "mmap" for asan is exported or not. If it isn't then this is an easy fix, iterate through all possible matches and avoid any internal versions of mmap and only call externally visible symbols. Antonio, can you verify the visibility of the symbol?

  bool Symbol::IsExternal() const { return m_is_external; }


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D87868/new/

https://reviews.llvm.org/D87868



More information about the lldb-commits mailing list