• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# HiDebug_MemoryLimit
2
3
4## Overview
5
6Defines a struct for the memory limit of an application process.
7
8**Since**: 12
9
10**Related module**: [HiDebug](_hi_debug.md)
11
12**Header file**: [hidebug_type.h](hidebug__type_8h.md)
13
14## Summary
15
16
17### Member Variables
18
19| Name| Description|
20| -------- | -------- |
21| uint64_t [rssLimit](#rsslimit) | Limit on the resident set size, in KB. |
22| uint64_t [vssLimit](#vsslimit) | Limit on the virtual set size, in KB. |
23
24
25## Member Variable Description
26
27
28### rssLimit
29
30```
31uint64_t HiDebug_MemoryLimit::rssLimit
32```
33**Description**
34Limit on the resident set size, in KB.
35
36
37### vssLimit
38
39```
40uint64_t HiDebug_MemoryLimit::vssLimit
41```
42**Description**
43Limit on the virtual set size, in KB.
44