summary refs log tree commit diff
path: root/src/libstd/sys/wasm/backtrace.rs
blob: 52d4a63bb6384aa428d93564b7b7895c05386119 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use io;
use sys::unsupported;
use sys_common::backtrace::Frame;

pub struct BacktraceContext;

pub fn unwind_backtrace(_frames: &mut [Frame])
    -> io::Result<(usize, BacktraceContext)>
{
    unsupported()
}

pub fn resolve_symname<F>(_frame: Frame,
                          _callback: F,
                          _: &BacktraceContext) -> io::Result<()>
    where F: FnOnce(Option<&str>) -> io::Result<()>
{
    unsupported()
}

pub fn foreach_symbol_fileline<F>(_: Frame,
                                  _: F,
                                  _: &BacktraceContext) -> io::Result<bool>
    where F: FnMut(&[u8], u32) -> io::Result<()>
{
    unsupported()
}