about summary refs log tree commit diff
diff options
context:
space:
mode:
authorStefan Lankes <slankes@eonerc.rwth-aachen.de>2020-10-06 12:12:15 +0200
committerStefan Lankes <slankes@eonerc.rwth-aachen.de>2020-10-11 11:54:16 +0200
commitd560b50d87c05ea5a8e6186c05a50ecd828eaaae (patch)
tree22dc0ee609f740355834eea8710892b0057a287b
parent98fcc3fbc7b2f3420d393b8916746002d501401c (diff)
downloadrust-d560b50d87c05ea5a8e6186c05a50ecd828eaaae.tar.gz
rust-d560b50d87c05ea5a8e6186c05a50ecd828eaaae.zip
revise code to pass the format check
-rw-r--r--library/std/src/sys/hermit/mutex.rs19
1 files changed, 5 insertions, 14 deletions
diff --git a/library/std/src/sys/hermit/mutex.rs b/library/std/src/sys/hermit/mutex.rs
index 511a5100ac6..bd9a9023396 100644
--- a/library/std/src/sys/hermit/mutex.rs
+++ b/library/std/src/sys/hermit/mutex.rs
@@ -3,7 +3,7 @@ use crate::collections::VecDeque;
 use crate::ffi::c_void;
 use crate::ops::{Deref, DerefMut, Drop};
 use crate::ptr;
-use crate::sync::atomic::{AtomicUsize, Ordering, spin_loop_hint};
+use crate::sync::atomic::{spin_loop_hint, AtomicUsize, Ordering};
 use crate::sys::hermit::abi;
 
 /// This type provides a lock based on busy waiting to realize mutual exclusion
@@ -50,10 +50,7 @@ impl<T> Spinlock<T> {
     #[inline]
     pub unsafe fn lock(&self) -> SpinlockGuard<'_, T> {
         self.obtain_lock();
-        SpinlockGuard {
-            dequeue: &self.dequeue,
-            data: &mut *self.data.get(),
-        }
+        SpinlockGuard { dequeue: &self.dequeue, data: &mut *self.data.get() }
     }
 }
 
@@ -147,10 +144,7 @@ struct MutexInner {
 
 impl MutexInner {
     pub const fn new() -> MutexInner {
-        MutexInner {
-            locked: false,
-            blocked_task: PriorityQueue::new(),
-        }
+        MutexInner { locked: false, blocked_task: PriorityQueue::new() }
     }
 }
 
@@ -163,9 +157,7 @@ unsafe impl Sync for Mutex {}
 
 impl Mutex {
     pub const fn new() -> Mutex {
-        Mutex {
-            inner: Spinlock::new(MutexInner::new()),
-        }
+        Mutex { inner: Spinlock::new(MutexInner::new()) }
     }
 
     #[inline]
@@ -211,8 +203,7 @@ impl Mutex {
     }
 
     #[inline]
-    pub unsafe fn destroy(&self) {
-    }
+    pub unsafe fn destroy(&self) {}
 }
 
 pub struct ReentrantMutex {