You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
707 B
33 lines
707 B
/* |
|
* Copyright (c) 2018 Oticon A/S |
|
* Copyright (c) 2023 Nordic Semiconductor ASA |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#include <stdio.h> |
|
#include "nsi_tracing.h" |
|
|
|
void *tracing_backend_posix_init_bottom(const char *file_name) |
|
{ |
|
FILE *f; |
|
|
|
f = fopen(file_name, "wb"); |
|
if (f == NULL) { |
|
nsi_print_error_and_exit("%s: Could not open CTF backend file %s\n", |
|
__func__, file_name); |
|
} |
|
|
|
return (void *)f; |
|
} |
|
|
|
void tracing_backend_posix_output_bottom(const void *data, unsigned long length, void *out_stream) |
|
{ |
|
int rc = fwrite(data, length, 1, (FILE *)out_stream); |
|
|
|
if (rc != 1) { |
|
nsi_print_warning("%s: Failure writing to CTF backend file\n", __func__); |
|
} |
|
|
|
fflush((FILE *)out_stream); |
|
}
|
|
|