agileRTOS (zrtos)  Version 0.8.0 (ghostbuster)
vheap_chunk_type.h File Reference
#include <zrtos/vheap_type.h>
Include dependency graph for vheap_chunk_type.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  _zrtos_vheap_chunk_type_t
 

Typedefs

typedef struct _zrtos_vheap_chunk_type_t zrtos_vheap_chunk_type_t
 

Functions

bool zrtos_vheap_chunk_type__init (zrtos_vheap_chunk_type_t *thiz, zrtos_vheap_type_t type)
 
bool zrtos_vheap_chunk_type__is_eq (zrtos_vheap_chunk_type_t *thiz, zrtos_vheap_type_t type)
 

Typedef Documentation

◆ zrtos_vheap_chunk_type_t

Function Documentation

◆ zrtos_vheap_chunk_type__init()

bool zrtos_vheap_chunk_type__init ( zrtos_vheap_chunk_type_t thiz,
zrtos_vheap_type_t  type 
)

Definition at line 20 of file vheap_chunk_type.h.

23  {
24  thiz->type = type;
25  return true;
26 }
zrtos_vheap_type_t type
Here is the caller graph for this function:

◆ zrtos_vheap_chunk_type__is_eq()

bool zrtos_vheap_chunk_type__is_eq ( zrtos_vheap_chunk_type_t thiz,
zrtos_vheap_type_t  type 
)

Definition at line 28 of file vheap_chunk_type.h.

31  {
32  return thiz->type == type;
33 }
zrtos_vheap_type_t type
Here is the caller graph for this function: