1# HiDebug_ThreadCpuUsage
2
3
4## 概述
5
6应用程序所有线程的CPU使用率结构体定义。
7
8**起始版本:** 12
9
10**相关模块:**[HiDebug](_hi_debug.md)
11
12
13## 汇总
14
15
16### 成员变量
17
18| 名称 | 描述 |
19| -------- | -------- |
20| uint32_t [threadId](#threadid) | 线程ID。  |
21| double [cpuUsage](#cpuusage) | 线程CPU使用率百分比。  |
22| struct HiDebug_ThreadCpuUsage \* [next](#next) | 下一个线程的使用率信息。  |
23
24
25## 结构体成员变量说明
26
27
28### cpuUsage
29
30```
31double HiDebug_ThreadCpuUsage::cpuUsage
32```
33**描述**
34线程CPU使用率百分比。
35
36
37### next
38
39```
40struct HiDebug_ThreadCpuUsage* HiDebug_ThreadCpuUsage::next
41```
42**描述**
43下一个线程的使用率信息。
44
45
46### threadId
47
48```
49uint32_t HiDebug_ThreadCpuUsage::threadId
50```
51**描述**
52线程ID。
53