simple-frame-rs 0.2.0

Parse SFrame (Simple Frame) stack trace information
Documentation
# simple-frame-rs

![Crates.io Version](https://img.shields.io/crates/v/simple-frame-rs)
![docs.rs](https://img.shields.io/docsrs/simple-frame-rs)

Rust crate to parse [SFrame](https://sourceware.org/binutils/wiki/sframe) stack trace format.

## Example

```shell
$ echo "int main() { return 0; }" > test.c
$ gcc -Wa,--gsframe test.c -o test
$ cargo run --example dump_sframe test
# output is similar to: objdump --sframe test
$ cargo run --example dump_backtrace [PID]
# dump backtrace of process of pid [PID],
# require ptrace attach permission
```

## License

Licensed under MIT.