|
1 |
| -// Copyright 2014-2015 The Rust Project Developers. See the COPYRIGHT |
| 1 | +// Copyright 2014-2017 The Rust Project Developers. See the COPYRIGHT |
2 | 2 | // file at the top-level directory of this distribution and at
|
3 | 3 | // http://rust-lang.org/COPYRIGHT.
|
4 | 4 | //
|
|
8 | 8 | // option. This file may not be copied, modified, or distributed
|
9 | 9 | // except according to those terms.
|
10 | 10 |
|
11 |
| -pub use self::imp::{foreach_symbol_fileline, resolve_symname}; |
| 11 | +mod dladdr; |
| 12 | + |
| 13 | +use sys::backtrace::BacktraceContext; |
| 14 | +use sys_common::backtrace::Frame; |
| 15 | +use io; |
| 16 | + |
| 17 | +#[cfg(target_os = "emscripten")] |
| 18 | +pub use self::dladdr::resolve_symname; |
12 | 19 |
|
13 | 20 | #[cfg(target_os = "emscripten")]
|
14 |
| -#[path = "dladdr.rs"] |
15 |
| -mod imp; |
| 21 | +pub fn foreach_symbol_fileline<F>(_: Frame, _: F, _: &BacktraceContext) -> io::Result<bool> |
| 22 | +where |
| 23 | + F: FnMut(&[u8], ::libc::c_int) -> io::Result<()> |
| 24 | +{ |
| 25 | + Ok(false) |
| 26 | +} |
| 27 | + |
| 28 | +#[cfg(not(target_os = "emscripten"))] |
| 29 | +pub use sys_common::gnu::libbacktrace::foreach_symbol_fileline; |
16 | 30 |
|
17 | 31 | #[cfg(not(target_os = "emscripten"))]
|
18 |
| -mod imp { |
19 |
| - pub use sys_common::gnu::libbacktrace::{foreach_symbol_fileline, resolve_symname}; |
| 32 | +pub fn resolve_symname<F>(frame: Frame, callback: F, bc: &BacktraceContext) -> io::Result<()> |
| 33 | +where |
| 34 | + F: FnOnce(Option<&str>) -> io::Result<()> |
| 35 | +{ |
| 36 | + ::sys_common::gnu::libbacktrace::resolve_symname(frame, |symname| { |
| 37 | + if symname.is_some() { |
| 38 | + callback(symname) |
| 39 | + } else { |
| 40 | + dladdr::resolve_symname(frame, callback, bc) |
| 41 | + } |
| 42 | + }, bc) |
20 | 43 | }
|
0 commit comments