pub struct ProcessControlBlockInner {
    pub is_zombie: bool,
    pub memory_set: MemorySet,
    pub parent: Option<Weak<ProcessControlBlock>>,
    pub children: Vec<Arc<ProcessControlBlock>>,
    pub exit_code: i32,
    pub fd_table: Vec<Option<Arc<dyn File + Send + Sync>>>,
    pub signals: SignalFlags,
    pub tasks: Vec<Option<Arc<TaskControlBlock>>>,
    pub task_res_allocator: RecycleAllocator,
    pub mutex_list: Vec<Option<Arc<dyn Mutex>>>,
    pub semaphore_list: Vec<Option<Arc<Semaphore>>>,
    pub condvar_list: Vec<Option<Arc<Condvar>>>,
}
Expand description

Inner of Process Control Block

Fields

is_zombie: bool

is zombie?

memory_set: MemorySet

memory set(address space)

parent: Option<Weak<ProcessControlBlock>>

parent process

children: Vec<Arc<ProcessControlBlock>>

children process

exit_code: i32

exit code

fd_table: Vec<Option<Arc<dyn File + Send + Sync>>>

file descriptor table

signals: SignalFlags

signal flags

tasks: Vec<Option<Arc<TaskControlBlock>>>

tasks(also known as threads)

task_res_allocator: RecycleAllocator

task resource allocator

mutex_list: Vec<Option<Arc<dyn Mutex>>>

mutex list

semaphore_list: Vec<Option<Arc<Semaphore>>>

semaphore list

condvar_list: Vec<Option<Arc<Condvar>>>

condvar list

Implementations

get the address of app’s page table

allocate a new file descriptor

allocate a new task id

deallocate a task id

the count of tasks(threads) in this process

get a task with tid in this process

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.