Files
lab-rv32i-freertos-allocato…/tests/host-shim/FreeRTOS.h
T

22 lines
317 B
C

#ifndef K06_HOST_FREERTOS_H
#define K06_HOST_FREERTOS_H
#include <stddef.h>
#define portBYTE_ALIGNMENT 8U
#define portBYTE_ALIGNMENT_MASK ( portBYTE_ALIGNMENT - 1U )
#ifdef __cplusplus
extern "C" {
#endif
void * pvPortMalloc( size_t bytes );
void vPortFree( void * memory );
#ifdef __cplusplus
}
#endif
#endif