1 /*
2  * Copyright (C) 2015-2017 Alibaba Group Holding Limited
3  */
4 
5 #ifndef K_MM_REGION_H
6 #define K_MM_REGION_H
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 /** @addtogroup aos_rhino mm
13  *
14  *  @{
15  */
16 
17 /**
18  * Heap regino parameter, for heap init.
19  */
20  typedef struct {
21     uint8_t *start;
22     size_t   len;
23 } k_mm_region_t;
24 
25 /** @} */
26 
27 #ifdef __cplusplus
28 }
29 #endif
30 
31 #endif /* K_MM_REGION_H */
32 
33