blob: 03f0b0f885a70448d5f5b85066fb555c48eff8cf [file] [log] [blame]
/*
* Copyright (c) 2019 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef MAIN_H
#define MAIN_H
#include <kernel.h>
#include <app_memory/app_memdomain.h>
#include <sys/mempool.h>
extern struct k_mem_partition shared_partition;
#define SHARED_DATA K_APP_DMEM(shared_partition)
#define SHARED_BSS K_APP_BMEM(shared_partition)
extern struct sys_mem_pool shared_pool;
extern struct k_queue shared_queue_incoming;
extern struct k_queue shared_queue_outgoing;
#define NUM_LOOPS 10
#endif