Struct shadow_shim_helper_rs::shim_shmem::HostShmem

source ·
#[repr(C)]
pub struct HostShmem { pub host_id: HostId, pub protected: SelfContainedMutex<HostShmemProtected>, pub model_unblocked_syscall_latency: bool, pub max_unapplied_cpu_latency: SimulationTime, pub unblocked_syscall_latency: SimulationTime, pub unblocked_vdso_latency: SimulationTime, pub shadow_pid: pid_t, pub tsc_hz: u64, pub sim_time: AtomicEmulatedTime, pub shim_log_level: LogLevel, pub manager_shmem: ShMemBlockSerialized, }

Fields§

§host_id: HostId§protected: SelfContainedMutex<HostShmemProtected>§model_unblocked_syscall_latency: bool§max_unapplied_cpu_latency: SimulationTime§unblocked_syscall_latency: SimulationTime§unblocked_vdso_latency: SimulationTime§shadow_pid: pid_t§tsc_hz: u64§sim_time: AtomicEmulatedTime§shim_log_level: LogLevel§manager_shmem: ShMemBlockSerialized

Implementations§

source§

impl HostShmem

source

pub fn new( host_id: HostId, model_unblocked_syscall_latency: bool, max_unapplied_cpu_latency: SimulationTime, unblocked_syscall_latency: SimulationTime, unblocked_vdso_latency: SimulationTime, shadow_pid: pid_t, tsc_hz: u64, shim_log_level: LogLevel, manager_shmem: &ShMemBlock<'_, ManagerShmem>, ) -> Self

source

pub fn protected(&self) -> &SelfContainedMutex<HostShmemProtected>

Trait Implementations§

source§

impl VirtualAddressSpaceIndependent for HostShmem

source§

const IGNORE: () = _

Used by the derive macro to validate that fields are Vasi.

Auto Trait Implementations§

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> 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<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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> NoTypeInference for T

source§

type This = T

source§

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

source§

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>,

source§

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<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V