1 /* 2 * Copyright (c) 2017 Intel Corporation. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef __TEST_FIFO_H__ 8 #define __TEST_FIFO_H__ 9 10 #include <zephyr/ztest.h> 11 #include <zephyr/irq_offload.h> 12 #include <zephyr/ztest_error_hook.h> 13 14 extern struct k_heap test_pool; 15 16 typedef struct qdata { 17 sys_snode_t snode; 18 uint32_t data; 19 bool allocated; 20 } qdata_t; 21 #endif 22