1# HiDebug_SystemMemInfo 2 3 4## Overview 5 6Defines the system memory information. 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| uint32_t [totalMem](#totalmem) | Total memory of the system, in KB. | 22| uint32_t [freeMem](#freemem) | Free memory of the system, in KB. | 23| uint32_t [availableMem](#availablemem) | Available memory of the system, in KB. | 24 25 26## Member Variable Description 27 28 29### availableMem 30 31``` 32uint32_t HiDebug_SystemMemInfo::availableMem 33``` 34**Description** 35Available memory of the system, in KB. 36 37 38### freeMem 39 40``` 41uint32_t HiDebug_SystemMemInfo::freeMem 42``` 43**Description** 44Free memory of the system, in KB. 45 46 47### totalMem 48 49``` 50uint32_t HiDebug_SystemMemInfo::totalMem 51``` 52**Description** 53Total memory of the system, in KB. 54