This commit implements a CTF-backend for Zephyr's tracing API. The CTF-backend itself is split in a middle-layer and a bottom-layer. - Middle-layer decides the payload in event transactions, - Bottom-layer implements the IO transport. A simple POSIX bottom-layer is provided so far. Signed-off-by: François Delawarde <fnde@oticon.com>
12 lines
207 B
C
12 lines
207 B
C
/*
|
|
* Copyright (c) 2018 Oticon A/S
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef SUBSYS_DEBUG_TRACING_CTF_TOP_H
|
|
#define SUBSYS_DEBUG_TRACING_CTF_TOP_H
|
|
|
|
|
|
#endif /* SUBSYS_DEBUG_TRACING_CTF_TOP_H */
|