Struct kernel::process::Process

source ·
pub struct Process {
Show 17 fields vm: VirtualMemoryMapper, context: ProcessContext, id: u64, parent_id: u64, open_filesystem_nodes: BTreeMap<usize, FilesystemNode>, file_index_allocator: GoingUpAllocator, argv: Vec<String>, file_path: PathBuf, current_dir: Directory, stack_ptr_end: usize, stack_size: usize, heap_start: usize, heap_size: usize, heap_max: usize, priority: PriorityLevel, exit_code: i32, children_exits: BTreeMap<u64, i32>,
}

Fields§

§vm: VirtualMemoryMapper§context: ProcessContext§id: u64§parent_id: u64§open_filesystem_nodes: BTreeMap<usize, FilesystemNode>§file_index_allocator: GoingUpAllocator§argv: Vec<String>§file_path: PathBuf§current_dir: Directory§stack_ptr_end: usize§stack_size: usize§heap_start: usize§heap_size: usize§heap_max: usize§priority: PriorityLevel§exit_code: i32§children_exits: BTreeMap<u64, i32>

Implementations§

source§

impl Process

source

pub fn allocate_process( parent_id: u64, elf: &Elf, file: &mut File, argv: Vec<String>, current_dir: Directory ) -> Result<Self, ProcessError>

source

pub unsafe fn switch_to_this_vm(&mut self)

source

pub fn id(&self) -> u64

source

pub fn parent_id(&self) -> u64

source

pub fn is_user_address_mapped(&self, address: usize) -> bool

source

pub fn finish_stdio(&mut self)

source

pub fn push_fs_node<F: Into<FilesystemNode>>(&mut self, file: F) -> usize

source

pub fn attach_fs_node_to_fd<F: Into<FilesystemNode>>( &mut self, fd: usize, file: F ) -> bool

source

pub fn get_fs_node(&mut self, fd: usize) -> Option<&mut FilesystemNode>

source

pub fn take_fs_node(&mut self, fd: usize) -> Option<FilesystemNode>

source

pub fn put_fs_node(&mut self, fd: usize, file: FilesystemNode)

source

pub fn exit(&mut self, exit_code: i32)

Sets the exit_code and prepare to release the resources held by this process The scheduler will handle the state of the process

source

pub fn add_child_exit(&mut self, pid: u64, exit_code: i32)

source

pub fn get_child_exit(&mut self, pid: u64) -> Option<i32>

source

pub fn add_to_heap(&mut self, increment: isize) -> Option<usize>

Add/Remove to/from the heap and return the previous end of the heap before the change If this is an Add, it will return the address of the new block If this is a Remove, the result will generally be useless Use with 0 to get the current heap end

source

pub fn get_current_dir(&self) -> &Directory

source

pub fn set_current_dir(&mut self, current_dir: Directory)

source

pub fn get_priority(&self) -> PriorityLevel

source

pub fn set_priority(&mut self, priority: PriorityLevel)

source

pub fn file_path(&self) -> &Path

source§

impl Process

source

fn prepare_stack( vm: &mut VirtualMemoryMapper, argv: &[String], rsp: u64, stack_top: u64 ) -> (u64, u64, u64)

source

fn write_process_meta( vm: &mut VirtualMemoryMapper, process_meta_addr: usize, process_meta: ProcessMetadata )

Trait Implementations§

source§

impl Drop for Process

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

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