zephyr/tests/subsys/rtio/rtio_api/src/rtio_api.h
Tom Burdick 3f02532616 tests: rtio: Split test suites up into files
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>
2023-03-17 12:49:57 -05:00

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_ */