Sign in
pigweed
/
third_party
/
github
/
zephyrproject-rtos
/
zephyr
/
9639c00fbb06f77faeceb09c97e3db4ca8a7d249
/
.
/
tests
/
kernel
/
queue
/
src
/
test_queue.h
blob: e91f767ff5362f940fbd3d4a941d112a96386abd [
file
] [
log
] [
blame
]
/*
* Copyright (c) 2017 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef
__TEST_FIFO_H__
#define
__TEST_FIFO_H__
#include
<ztest.h>
#include
<irq_offload.h>
typedef
struct
qdata
{
sys_snode_t
snode
;
u32_t
data
;
}
qdata_t
;
#endif