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 13## Summary 14 15 16### Member Variables 17 18| Name| Description| 19| -------- | -------- | 20| uint64_t [rssLimit](#rsslimit) | Limit on the resident set size, in KB. | 21| uint64_t [vssLimit](#vsslimit) | Limit on the virtual set size, in KB. | 22 23 24## Member Variable Description 25 26 27### rssLimit 28 29``` 30uint64_t HiDebug_MemoryLimit::rssLimit 31``` 32**Description** 33Limit on the resident set size, in KB. 34 35 36### vssLimit 37 38``` 39uint64_t HiDebug_MemoryLimit::vssLimit 40``` 41**Description** 42Limit on the virtual set size, in KB. 43