1 /* 2 * Copyright (c) 2023 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * "Bottom" of the CTF tracing backend for the native/hosted targets. 7 * When built with the native_simulator this will be built in the runner context, 8 * that is, with the host C library, and with the host include paths. 9 * 10 * Note: None of these functions are public interfaces. But internal to this CTF backend. 11 */ 12 13 #ifndef DRIVERS_FLASH_FLASH_SIMULATOR_NATIVE_H 14 #define DRIVERS_FLASH_FLASH_SIMULATOR_NATIVE_H 15 16 #ifdef __cplusplus 17 extern "C" { 18 #endif 19 20 void *tracing_backend_posix_init_bottom(const char *file_name); 21 void tracing_backend_posix_output_bottom(const void *data, unsigned long length, void *out_stream); 22 23 #ifdef __cplusplus 24 } 25 #endif 26 27 #endif /* DRIVERS_FLASH_FLASH_SIMULATOR_NATIVE_H */ 28