rust/src/librustrt
Steve Klabnik 6ac7fc73f5 Update infrastructure for fail -> panic
This includes updating the language items and marking what needs to
change after a snapshot.

If you do not use the standard library, the language items you need to
implement have changed. For example:

```rust
 #[lang = "fail_fmt"] fn fail_fmt() -> ! { loop {} }
```

is now

```rust
 #[lang = "panic_fmt"] fn panic_fmt() -> ! { loop {} }
```

Related, lesser-implemented language items `fail` and
`fail_bounds_check` have become `panic` and `panic_bounds_check`, as
well. These are implemented by `libcore`, so it is unlikely (though
possible!) that these two renamings will affect you.

[breaking-change]

Fix test suite
2014-10-29 16:06:13 -04:00
..
args.rs Rename fail! to panic! 2014-10-29 11:43:07 -04:00
at_exit_imp.rs Register new snapshots 2014-10-10 22:09:49 -07:00
bookkeeping.rs Register new snapshots 2014-10-10 22:09:49 -07:00
c_str.rs Rename fail! to panic! 2014-10-29 11:43:07 -04:00
exclusive.rs Fallout from renaming 2014-09-16 14:37:48 -07:00
lib.rs Rename fail! to panic! 2014-10-29 11:43:07 -04:00
libunwind.rs rustrt: Convert statics to constants 2014-10-09 09:44:51 -07:00
local.rs librustc: Forbid private types in public APIs. 2014-09-22 20:05:45 -07:00
local_data.rs Rename fail! to panic! 2014-10-29 11:43:07 -04:00
local_ptr.rs Fix librustrt 2014-09-30 12:52:46 -07:00
macros.rs std: Extract librustrt out of libstd 2014-06-06 22:19:41 -07:00
mutex.rs Rename fail! to panic! 2014-10-29 11:43:07 -04:00
rtio.rs libnative: Remove all uses of {:?}. 2014-10-16 11:15:35 -04:00
stack.rs Print stack overflow messages for Windows, Linux and OS X 2014-10-24 14:36:29 +02:00
stack_overflow.rs Rename fail! to panic! 2014-10-29 11:43:07 -04:00
task.rs Rename fail! to panic! 2014-10-29 11:43:07 -04:00
thread.rs Rename fail! to panic! 2014-10-29 11:43:07 -04:00
thread_local_storage.rs Fix librustrt 2014-09-30 12:52:46 -07:00
unwind.rs Update infrastructure for fail -> panic 2014-10-29 16:06:13 -04:00
util.rs rustrt: Convert statics to constants 2014-10-09 09:44:51 -07:00