Struct os::task::TaskControlBlock

source ·
pub struct TaskControlBlock {
    pub pid: PidHandle,
    pub kernel_stack: KernelStack,
    inner: UPSafeCell<TaskControlBlockInner>,
}
Expand description

Task control block structure

Directly save the contents that will not change during running

Fields§

§pid: PidHandle

Process identifier

§kernel_stack: KernelStack

Kernel stack corresponding to PID

§inner: UPSafeCell<TaskControlBlockInner>

Mutable

Implementations§

source§

impl TaskControlBlock

source

pub fn inner_exclusive_access(&self) -> RefMut<'_, TaskControlBlockInner>

Get the mutable reference of the inner TCB

source

pub fn get_user_token(&self) -> usize

Get the address of app’s page table

source§

impl TaskControlBlock

source

pub fn new(elf_data: &[u8]) -> Self

Create a new process

At present, it is only used for the creation of initproc

source

pub fn exec(&self, elf_data: &[u8])

Load a new elf to replace the original application address space and start execution

source

pub fn fork(self: &Arc<Self>) -> Arc<Self>

parent process fork the child process

source

pub fn getpid(&self) -> usize

get pid of process

source

pub fn change_program_brk(&self, size: i32) -> Option<usize>

change the location of the program break. return None if failed.

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