Files
rust/src
bors 97ec69fb95 Auto merge of #32325 - alexcrichton:panic-once, r=aturon
std: Rewrite Once with poisoning

This commit rewrites the `std::sync::Once` primitive with poisoning in mind in
light of #31688. Currently a panic in the initialization closure will cause
future initialization closures to run, but the purpose of a Once is usually to
initialize some global state so it's highly likely that the global state is
corrupt if a panic happened. The same strategy of a mutex is taken where a panic
is propagated by default.

A new API, `call_once_force`, was added to subvert panics like is available on
Mutex as well (for when panicking is handled internally).

Adding this support was a significant enough change to the implementation that
it was just completely rewritten from scratch, primarily to avoid using a
`StaticMutex` which needs to have `destroy()` called on it at some point (a pain
to do).

Closes #31688
2016-03-26 15:14:29 -07:00
..
2016-03-15 22:32:38 -05:00
2016-03-24 17:27:15 -04:00
2016-03-12 12:31:13 -08:00
2016-03-12 12:31:13 -08:00
2016-03-12 12:31:13 -08:00
2016-03-22 22:03:54 -05:00
2016-03-26 18:23:57 +00:00
2016-03-21 06:04:57 +01:00