| 33 | namespace boost { namespace stacktrace { namespace detail { |
| 34 | |
| 35 | struct Dl_info { |
| 36 | std::string fname_storage{}; |
| 37 | const char *dli_fname = nullptr; |
| 38 | const char *dli_sname = nullptr; |
| 39 | }; |
| 40 | |
| 41 | int dladdr(const void* address_raw, Dl_info* info) noexcept { |
| 42 | static constexpr std::size_t dl_buff_size = 0x1000; |
nothing calls this directly
no outgoing calls
no test coverage detected