You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #3338 - RalfJung:more-tracking-and-threads, r=RalfJung
print thread name in miri error backtraces; add option to track read/write accesses
This came up while debugging rust-lang/rust#121626. It didn't end up being useful there but still seems like good tools to have around.
Copy file name to clipboardExpand all lines: tests/fail-dep/concurrency/libc_pthread_create_too_few_args.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ LL | panic!()
6
6
|
7
7
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
8
8
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
9
-
= note: BACKTRACE:
9
+
= note: BACKTRACE on thread `unnamed-ID`:
10
10
= note: inside `thread_start` at RUSTLIB/core/src/panic.rs:LL:CC
11
11
= note: this error originates in the macro `$crate::panic::panic_2021` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/fail-dep/concurrency/libc_pthread_create_too_many_args.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ LL | panic!()
6
6
|
7
7
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
8
8
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
9
-
= note: BACKTRACE:
9
+
= note: BACKTRACE on thread `unnamed-ID`:
10
10
= note: inside `thread_start` at RUSTLIB/core/src/panic.rs:LL:CC
11
11
= note: this error originates in the macro `$crate::panic::panic_2021` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
0 commit comments