Struct kernel::sync::spin::mutex::Mutex

source ·
pub struct Mutex<T: ?Sized> {
    lock: Lock,
    owner_cpu: AtomicI64,
    data: UnsafeCell<T>,
}

Fields§

§lock: Lock§owner_cpu: AtomicI64§data: UnsafeCell<T>

Implementations§

source§

impl<T> Mutex<T>

source

pub const fn new(data: T) -> Self

source§

impl<T: ?Sized> Mutex<T>

source

pub fn lock(&self) -> MutexGuard<'_, T>

source

pub fn try_lock(&self) -> Option<MutexGuard<'_, T>>

source

pub fn run_with<'a, R>(&'a self, f: impl FnOnce(&'a T) -> R) -> R

A special method to allow accessing the variable inside the lock after locking it.

The difference between this and using Deref is that the lifetime of the returned reference is tied to main value of the lock.

source

pub fn run_with_mut<'a, R>(&'a self, f: impl FnOnce(&'a mut T) -> R) -> R

A special method to allow accessing the variable inside the lock after locking it.

The difference between this and using DerefMut is that the lifetime of the returned reference is tied to main value of the lock.

source

pub fn get_mut(&mut self) -> &mut T

We know statically that no one else is accessing the lock, so we can just return a reference to the data without acquiring the lock.

Trait Implementations§

source§

impl ClockDevice for Mutex<Hpet>

source§

fn name(&self) -> &'static str

Returns the name of the device
source§

fn get_time(&self) -> ClockTime

Returns the current time of the device with no relation to anything The system will use consecutive calls to determine the time
source§

fn granularity(&self) -> u64

Returns the granularity of the device in nanoseconds, i.e. the smallest time unit it can measure Must be at least 1
source§

fn require_calibration(&self) -> bool

Returns true if the device needs to be calibration i.e. it doesn’t count time correctly
source§

fn rating(&self) -> u64

Returns the rating of the device, i.e. how good it is The higher the better
source§

impl<T> Debug for Mutex<T>
where T: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl FileSystem for Mutex<FatFilesystem>

source§

fn open_root(&self) -> Result<DirectoryNode, FileSystemError>

Open the root directory of the filesystem
source§

fn read_dir( &self, inode: &DirectoryNode, handler: &mut dyn FnMut(Node) -> DirTreverse ) -> Result<(), FileSystemError>

Read the directory entries in the inode, and call the handler for each entry The handler should return DirTreverse::Stop to stop the traversal
source§

fn treverse_dir( &self, inode: &DirectoryNode, matcher: &str ) -> Result<Node, FileSystemError>

Traverse the directory in the inode and return the entry with the name matcher Most of the time, no need to implement this, as it is already implemented in the default using FileSystem::read_dir
source§

fn create_node( &self, parent: &DirectoryNode, name: &str, attributes: FileAttributes ) -> Result<Node, FileSystemError>

Create a new entry in the parent directory with the name and attributes This could be a file or a directory, the attributes should specify the type
source§

fn read_file( &self, inode: &FileNode, position: u64, buf: &mut [u8], access_helper: &mut AccessHelper ) -> Result<u64, FileSystemError>

Read the file in the inode at the position and put the data in buf The access_helper is used to store some extra metadata to help the filesystem manage the caches or any extra data it needs.
source§

fn write_file( &self, inode: &mut FileNode, position: u64, buf: &[u8], access_helper: &mut AccessHelper ) -> Result<u64, FileSystemError>

Write the file in the inode at the position with the data in buf The access_helper is used to store some extra metadata to help the filesystem manage the caches or any extra data it needs.
source§

fn flush_file( &self, inode: &mut FileNode, access_helper: &mut AccessHelper ) -> Result<(), FileSystemError>

Tells the filesystem to flush the content of this file to disk or to the backing store if it needs to
source§

fn close_file( &self, inode: &FileNode, access_helper: AccessHelper ) -> Result<(), FileSystemError>

Close the file in the inode, this is called when the file is dropped The access_helper is used to store some extra metadata to help the filesystem manage the caches or any extra data it needs.
source§

fn set_file_size( &self, inode: &mut FileNode, size: u64 ) -> Result<(), FileSystemError>

Set the size of the file in the inode to size, this is used to truncate the file or to extend it
source§

fn unmount(self: Arc<Self>)

Unmount the filesystem, this is called before the filesystem is dropped The reason we use this is that we can’t force Drop to be implemented for Arc<dyn FileSystem>, so we have this instead
source§

fn number_global_refs(&self) -> usize

The expected number of strong refs in Arc by default This is used to check if the filesystem is still in use before unmounting This is here because for some filesystems, it could be stored globally in some Mutex like /devices this reference should not be counted to know if its still in use
source§

impl<T: ?Sized + Send> Send for Mutex<T>

source§

impl<T: ?Sized + Send> Sync for Mutex<T>

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for Mutex<T>

§

impl<T: ?Sized> Unpin for Mutex<T>
where T: Unpin,

§

impl<T: ?Sized> UnwindSafe for Mutex<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Az for T

source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.