The test suites have grown to cover different units really and having them in one file was becoming a bit much to scroll around in. Coincidentally found a accidental reuse of a define between the spsc and mpsc tests. Signed-off-by: Tom Burdick <thomas.burdick@intel.com>
20 lines
303 B
C
20 lines
303 B
C
/*
|
|
* Copyright (c) 2023 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_TEST_RTIO_API_H_
|
|
#define ZEPHYR_TEST_RTIO_API_H_
|
|
|
|
#include <zephyr/kernel.h>
|
|
|
|
struct thread_info {
|
|
k_tid_t tid;
|
|
int executed;
|
|
int priority;
|
|
int cpu_id;
|
|
};
|
|
|
|
#endif /* ZEPHYR_TEST_RTIO_API_H_ */
|