• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# systeminfo
2
3
4## Command Function
5
6This command is used to display the resource usage of the current operating system, including tasks, semaphores, mutexes, queues, and software timers.
7
8
9## Syntax
10
11systeminfo
12
13
14## Parameters
15
16None.
17
18
19## Usage Guidelines
20
21None.
22
23
24## Example
25
26Run **systeminfo**.
27
28
29## Output
30
31Usage of system resources:
32
33```
34OHOS:/$ systeminfo
35   Module    Used      Total     Enabled
36--------------------------------------------
37   Task      96        256       YES
38   Sem       435       1024      YES
39   Queue     13        1024      YES
40   SwTmr     20        1024      YES
41```
42
43**Table 1** Output description
44
45| Parameter   | Description          |
46| ------- | -------------- |
47| Module  | Module name.    |
48| Used    | Used resources.  |
49| Total   | Total resources.  |
50| Enabled | Whether the module is enabled.|
51| Task    | Task.        |
52| Sem     | Semaphore.      |
53| Queue   | Using queues.        |
54| SwTmr   | Software timer.      |
55