Skip to content

Commit 0f3f292

Browse files
authored
remove sync::Once::call_once 'static
- [std: Rewrite the `sync` modulehttps://github.com/rust-lang/rust/commit/71d4e77db8ad4b6d821da7e5d5300134ac95974e) (Nov 2014) ```diff - pub fn doit(&self, f: ||) { + pub fn doit(&'static self, f: ||) { ``` > ```text > The second layer is the layer provided by `std::sync` which is intended to be > the thinnest possible layer on top of `sys_common` which is entirely safe to > use. There are a few concerns which need to be addressed when making these > system primitives safe: > > * Once used, the OS primitives can never be **moved**. This means that they > essentially need to have a stable address. The static primitives use > `&'static self` to enforce this, and the non-static primitives all use a > `Box` to provide this guarantee. > ``` The author of this diff is @alexcrichton. `sync::Once` contains only a pointer to (privately hidden) `Waiter`s, which are all stack-allocated. The `'static` bound to `sync::Once` is thus unnecessary to guarantee that any OS primitives are non-relocatable. See https://internals.rust-lang.org/t/sync-once-per-instance/7918 for more context.
1 parent 4700e11 commit 0f3f292

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/libstd/sync/once.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ struct Waiter {
149149

150150
// Helper struct used to clean up after a closure call with a `Drop`
151151
// implementation to also run on panic.
152-
struct Finish {
152+
struct Finish<'a> {
153153
panicked: bool,
154-
me: &'static Once,
154+
me: &'a Once,
155155
}
156156

157157
impl Once {
@@ -218,7 +218,7 @@ impl Once {
218218
///
219219
/// [poison]: struct.Mutex.html#poisoning
220220
#[stable(feature = "rust1", since = "1.0.0")]
221-
pub fn call_once<F>(&'static self, f: F) where F: FnOnce() {
221+
pub fn call_once<F>(&self, f: F) where F: FnOnce() {
222222
// Fast path, just see if we've completed initialization.
223223
if self.state.load(Ordering::SeqCst) == COMPLETE {
224224
return
@@ -275,7 +275,7 @@ impl Once {
275275
/// INIT.call_once(|| {});
276276
/// ```
277277
#[unstable(feature = "once_poison", issue = "33577")]
278-
pub fn call_once_force<F>(&'static self, f: F) where F: FnOnce(&OnceState) {
278+
pub fn call_once_force<F>(&self, f: F) where F: FnOnce(&OnceState) {
279279
// same as above, just with a different parameter to `call_inner`.
280280
if self.state.load(Ordering::SeqCst) == COMPLETE {
281281
return
@@ -299,7 +299,7 @@ impl Once {
299299
// currently no way to take an `FnOnce` and call it via virtual dispatch
300300
// without some allocation overhead.
301301
#[cold]
302-
fn call_inner(&'static self,
302+
fn call_inner(&self,
303303
ignore_poisoning: bool,
304304
init: &mut FnMut(bool)) {
305305
let mut state = self.state.load(Ordering::SeqCst);
@@ -390,7 +390,7 @@ impl fmt::Debug for Once {
390390
}
391391
}
392392

393-
impl Drop for Finish {
393+
impl<'a> Drop for Finish<'a> {
394394
fn drop(&mut self) {
395395
// Swap out our state with however we finished. We should only ever see
396396
// an old state which was RUNNING.

0 commit comments

Comments
 (0)