Lines Matching refs:processes
6 …processes. The kernel mode is considered as a process space and does not have other processes exce…
8 …he process module provides multiple processes for users and implements switching and communication…
10 - The processes use the preemption scheduling mechanism. The processes with a higher priority are s…
12 - The processes are assigned 32 priorities (**0** to **31**). Among them, user processes can be con…
16 …ocess has its own memory space, which is invisible to other processes. In this way, processes are …
18 - The user-mode root process **init** is created by the kernel. Other user-mode processes are creat…
56 …1. After a process with a higher priority is created or restored, processes will be scheduled. The…
65 …le is used to isolate user-mode processes and supports the following functions: creating and exiti…
69 …eads in the process. When switching occurs between threads in different processes, the process spa…
81 **Table 1** APIs for processes and process groups
110 | LOS_GetSystemProcessMaximum | Obtains the maximum number of processes supported by the system.|
113 **Table 5** APIs for managing processes
126 Kernel-mode processes cannot be created. Therefore, kernel-mode process development is not involved.
131 >- Except KProcess and KIdle, other kernel-mode processes cannot be created.