- Notifications
You must be signed in to change notification settings - Fork19
License
Apache-2.0, MIT licenses found
Licenses found
rust-osdev/volatile
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Provides volatile wrapper types for raw pointers.
The volatile wrapper types in this crate wrap a pointer to anyCopy
-able type and provide volatile memory access to wrapped value.Volatile memory accesses are never optimized away by the compiler, and are useful in many low-level systems programming and concurrent contexts.
This crate provides two different wrapper types:VolatilePtr
andVolatileRef
.The difference between the two types is that the former behaves like a raw pointer, while the latter behaves like a Rust reference type.For example,VolatilePtr
can be freely copied, but not sent across threads because this could introduce mutable aliasing.TheVolatileRef
type, on the other hand, requires exclusive access for mutation, so that sharing it across thread boundaries is safe.
Both wrapper typesdo not enforce any atomicity guarantees; to also get atomicity, consider looking at theAtomic
wrapper types found inlibcore
orlibstd
.
Many people expressed interest in aVolatileCell
type, i.e. a transparent wrapper type that owns the wrapped value.Such a type would be similar tocore::cell::Cell
, with the difference that all methods are volatile.Unfortunately, it is not sound to implement such aVolatileCell
type in Rust.The reason is that Rust and LLVM consider&
and&mut
references asdereferencable.This means that the compiler is allowed to freely access the referenced value without any restrictions.So no matter how aVolatileCell
type is implemented, the compiler is allowed to perform non-volatile read operations of the contained value, which can lead to unexpected (or even undefined?) behavior.For more details, see the discussionin our repository andin theunsafe-code-guidelines
repository.
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE orhttp://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT orhttp://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
About
Resources
License
Apache-2.0, MIT licenses found
Licenses found
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors11
Uh oh!
There was an error while loading.Please reload this page.