simple-frame-rs

Crates.iosimple-frame-rs
lib.rssimple-frame-rs
version0.2.0
created_at2025-09-30 15:02:35.082661+00
updated_at2025-10-01 02:05:22.710697+00
descriptionParse SFrame (Simple Frame) stack trace information
homepage
repositoryhttps://github.com/jiegec/simple-frame-rs
max_upload_size
id1861263
size52,632
Chen (jiegec)

documentation

README

simple-frame-rs

Crates.io Version docs.rs

Rust crate to parse SFrame stack trace format.

Example

$ 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.

Commit count: 0

cargo fmt