Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore more frames on backtrace unwinding. #40264

Closed
wants to merge 17 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Support of _rust... and panic_unwind::__rust...
  • Loading branch information
Yamakaky committed Mar 4, 2017
commit 33e42a35964aa1a334e40f3bc50d8ba336f51d49
2 changes: 1 addition & 1 deletion src/libstd/sys_common/backtrace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ fn filter_frames(frames: &[Frame],
let mut is_rmcp = false;
let _ = resolve_symname(*frame, |symname| {
if let Some(mangled_symbol_name) = symname {
if mangled_symbol_name == "__rust_maybe_catch_panic" {
if mangled_symbol_name.contains("rust_maybe_catch_panic") {
is_rmcp = true;
}
}
Expand Down