#ifndef __interCoreQueue_H #define __interCoreQueue_H #ifndef CONFIGURE_ICQ_INTERCOREQUEUE_SIZE #define CONFIGURE_ICQ_INTERCOREQUEUE_SIZE 10 #endif typedef char* message_t; typedef struct { message_t queue[CONFIGURE_ICQ_INTERCOREQUEUE_SIZE]; }interCoreQueue_t; #endif