Skip to content

Commit

Permalink
Rename main thread from "<main>" to "main".
Browse files Browse the repository at this point in the history
Fix issue #33789
  • Loading branch information
WiSaGaN committed May 22, 2016
1 parent e24d621 commit 226bcdf
Show file tree
Hide file tree
Showing 27 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion src/doc/book/advanced-linking.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ $ ldd example
not a dynamic executable
$ ./example
hi!
thread '<main>' panicked at 'failed', example.rs:1
thread 'main' panicked at 'failed', example.rs:1
```

Success! This binary can be copied to almost any Linux machine with the same
Expand Down
4 changes: 2 additions & 2 deletions src/doc/book/error-handling.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ fn main() {
If you try running this code, the program will crash with a message like this:

```text
thread '<main>' panicked at 'Invalid number: 11', src/bin/panic-simple.rs:5
thread 'main' panicked at 'Invalid number: 11', src/bin/panic-simple.rs:5
```

Here's another example that is slightly less contrived. A program that accepts
Expand Down Expand Up @@ -498,7 +498,7 @@ At this point, you should be skeptical of calling `unwrap`. For example, if
the string doesn't parse as a number, you'll get a panic:

```text
thread '<main>' panicked at 'called `Result::unwrap()` on an `Err` value: ParseIntError { kind: InvalidDigit }', /home/rustbuild/src/rust-buildbot/slave/beta-dist-rustc-linux/build/src/libcore/result.rs:729
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: ParseIntError { kind: InvalidDigit }', /home/rustbuild/src/rust-buildbot/slave/beta-dist-rustc-linux/build/src/libcore/result.rs:729
```

This is rather unsightly, and if this happened inside a library you're
Expand Down
8 changes: 4 additions & 4 deletions src/doc/book/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,15 +221,15 @@ If you add a main function that calls `diverges()` and run it, you’ll get
some output that looks like this:

```text
thread ‘<main>’ panicked at ‘This function never returns!’, hello.rs:2
thread ‘main’ panicked at ‘This function never returns!’, hello.rs:2
```

If you want more information, you can get a backtrace by setting the
`RUST_BACKTRACE` environment variable:

```text
$ RUST_BACKTRACE=1 ./diverges
thread '<main>' panicked at 'This function never returns!', hello.rs:2
thread 'main' panicked at 'This function never returns!', hello.rs:2
stack backtrace:
1: 0x7f402773a829 - sys::backtrace::write::h0942de78b6c02817K8r
2: 0x7f402773d7fc - panicking::on_panic::h3f23f9d0b5f4c91bu9w
Expand All @@ -255,7 +255,7 @@ Any other value(even no value at all) turns on backtrace.
$ export RUST_BACKTRACE=1
...
$ RUST_BACKTRACE=0 ./diverges
thread '<main>' panicked at 'This function never returns!', hello.rs:2
thread 'main' panicked at 'This function never returns!', hello.rs:2
note: Run with `RUST_BACKTRACE=1` for a backtrace.
```

Expand All @@ -264,7 +264,7 @@ note: Run with `RUST_BACKTRACE=1` for a backtrace.
```text
$ RUST_BACKTRACE=1 cargo run
Running `target/debug/diverges`
thread '<main>' panicked at 'This function never returns!', hello.rs:2
thread 'main' panicked at 'This function never returns!', hello.rs:2
stack backtrace:
1: 0x7f402773a829 - sys::backtrace::write::h0942de78b6c02817K8r
2: 0x7f402773d7fc - panicking::on_panic::h3f23f9d0b5f4c91bu9w
Expand Down
2 changes: 1 addition & 1 deletion src/doc/book/guessing-game.md
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ You guessed: 59
You win!
Please input your guess.
quit
thread '<main>' panicked at 'Please type a number!'
thread 'main' panicked at 'Please type a number!'
```
Ha! `quit` actually quits. As does any other non-number input. Well, this is
Expand Down
2 changes: 1 addition & 1 deletion src/doc/book/strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ let hachi = &dog[0..2];
with this error:

```text
thread '<main>' panicked at 'index 0 and/or 2 in `忠犬ハチ公` do not lie on
thread 'main' panicked at 'index 0 and/or 2 in `忠犬ハチ公` do not lie on
character boundary'
```

Expand Down
2 changes: 1 addition & 1 deletion src/doc/book/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ failures:

test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured

thread '<main>' panicked at 'Some tests failed', /home/steve/src/rust/src/libtest/lib.rs:247
thread 'main' panicked at 'Some tests failed', /home/steve/src/rust/src/libtest/lib.rs:247
```

Rust indicates that our test failed:
Expand Down
2 changes: 1 addition & 1 deletion src/doc/book/vectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ println!("Item 7 is {}", v[7]);
then the current thread will [panic] with a message like this:

```text
thread '<main>' panicked at 'index out of bounds: the len is 3 but the index is 7'
thread 'main' panicked at 'index out of bounds: the len is 3 but the index is 7'
```

If you want to handle out-of-bounds errors without panicking, you can use
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/rt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ fn lang_start(main: *const u8, argc: isize, argv: *const *const u8) -> isize {
// created. Note that this isn't necessary in general for new threads,
// but we just do this to name the main thread and to give it correct
// info about the stack bounds.
let thread: Thread = NewThread::new(Some("<main>".to_owned()));
let thread: Thread = NewThread::new(Some("main".to_owned()));
thread_info::set(main_guard, thread);

// Store our args if necessary in a squirreled away location
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/main-panic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// error-pattern:thread '<main>' panicked at
// error-pattern:thread 'main' panicked at

fn main() {
panic!()
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/overflowing-add.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-pretty : (#23623) problems when ending with // comments

// error-pattern:thread '<main>' panicked at 'arithmetic operation overflowed'
// error-pattern:thread 'main' panicked at 'arithmetic operation overflowed'
// compile-flags: -C debug-assertions


Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/overflowing-lsh-1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-pretty : (#23623) problems when ending with // comments

// error-pattern:thread '<main>' panicked at 'shift operation overflowed'
// error-pattern:thread 'main' panicked at 'shift operation overflowed'
// compile-flags: -C debug-assertions

#![warn(exceeding_bitshifts)]
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/overflowing-lsh-2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-pretty : (#23623) problems when ending with // comments

// error-pattern:thread '<main>' panicked at 'shift operation overflowed'
// error-pattern:thread 'main' panicked at 'shift operation overflowed'
// compile-flags: -C debug-assertions

#![warn(exceeding_bitshifts)]
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/overflowing-lsh-3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-pretty : (#23623) problems when ending with // comments

// error-pattern:thread '<main>' panicked at 'shift operation overflowed'
// error-pattern:thread 'main' panicked at 'shift operation overflowed'
// compile-flags: -C debug-assertions

#![warn(exceeding_bitshifts)]
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/overflowing-lsh-4.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-pretty : (#23623) problems when ending with // comments

// error-pattern:thread '<main>' panicked at 'shift operation overflowed'
// error-pattern:thread 'main' panicked at 'shift operation overflowed'
// compile-flags: -C debug-assertions

// This function is checking that our automatic truncation does not
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/overflowing-mul.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-pretty : (#23623) problems when ending with // comments

// error-pattern:thread '<main>' panicked at 'arithmetic operation overflowed'
// error-pattern:thread 'main' panicked at 'arithmetic operation overflowed'
// compile-flags: -C debug-assertions

#![feature(rustc_attrs)]
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/overflowing-neg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-pretty : (#23623) problems when ending with // comments

// error-pattern:thread '<main>' panicked at 'attempted to negate with overflow'
// error-pattern:thread 'main' panicked at 'attempted to negate with overflow'
// compile-flags: -C debug-assertions

#![feature(rustc_attrs)]
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/overflowing-pow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// error-pattern:thread '<main>' panicked at 'arithmetic operation overflowed'
// error-pattern:thread 'main' panicked at 'arithmetic operation overflowed'
// compile-flags: -C debug-assertions

fn main() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/overflowing-rsh-1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-pretty : (#23623) problems when ending with // comments

// error-pattern:thread '<main>' panicked at 'shift operation overflowed'
// error-pattern:thread 'main' panicked at 'shift operation overflowed'
// compile-flags: -C debug-assertions

#![warn(exceeding_bitshifts)]
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/overflowing-rsh-2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-pretty : (#23623) problems when ending with // comments

// error-pattern:thread '<main>' panicked at 'shift operation overflowed'
// error-pattern:thread 'main' panicked at 'shift operation overflowed'
// compile-flags: -C debug-assertions

#![warn(exceeding_bitshifts)]
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/overflowing-rsh-3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-pretty : (#23623) problems when ending with // comments

// error-pattern:thread '<main>' panicked at 'shift operation overflowed'
// error-pattern:thread 'main' panicked at 'shift operation overflowed'
// compile-flags: -C debug-assertions

#![warn(exceeding_bitshifts)]
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/overflowing-rsh-4.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-pretty : (#23623) problems when ending with // comments

// error-pattern:thread '<main>' panicked at 'shift operation overflowed'
// error-pattern:thread 'main' panicked at 'shift operation overflowed'
// compile-flags: -C debug-assertions

// This function is checking that our (type-based) automatic
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/overflowing-rsh-5.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-pretty : (#23623) problems when ending with // comments

// error-pattern:thread '<main>' panicked at 'shift operation overflowed'
// error-pattern:thread 'main' panicked at 'shift operation overflowed'
// compile-flags: -C debug-assertions

#![warn(exceeding_bitshifts)]
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/overflowing-rsh-6.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-pretty : (#23623) problems when ending with // comments

// error-pattern:thread '<main>' panicked at 'shift operation overflowed'
// error-pattern:thread 'main' panicked at 'shift operation overflowed'
// compile-flags: -C debug-assertions

#![warn(exceeding_bitshifts)]
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/overflowing-sub.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-pretty : (#23623) problems when ending with // comments

// error-pattern:thread '<main>' panicked at 'arithmetic operation overflowed'
// error-pattern:thread 'main' panicked at 'arithmetic operation overflowed'
// compile-flags: -C debug-assertions

#![feature(rustc_attrs)]
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/panic-set-unset-handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// error-pattern:thread '<main>' panicked at 'foobar'
// error-pattern:thread 'main' panicked at 'foobar'

#![feature(std_panic, panic_handler)]
use std::panic;
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/panic-take-handler-nop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// error-pattern:thread '<main>' panicked at 'foobar'
// error-pattern:thread 'main' panicked at 'foobar'

#![feature(std_panic, panic_handler)]
use std::panic;
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-pass/multi-panic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fn check_for_no_backtrace(test: std::process::Output) {

assert_eq!(it.next().map(|l| l.starts_with("thread '<unnamed>' panicked at")), Some(true));
assert_eq!(it.next(), Some("note: Run with `RUST_BACKTRACE=1` for a backtrace."));
assert_eq!(it.next().map(|l| l.starts_with("thread '<main>' panicked at")), Some(true));
assert_eq!(it.next().map(|l| l.starts_with("thread 'main' panicked at")), Some(true));
assert_eq!(it.next(), None);
}

Expand Down

0 comments on commit 226bcdf

Please sign in to comment.