ovni/src/emu/trace.h
Rodrigo Arias ddbb7dd9f4 Add include-what-you-use
Adds forwards declarations in headers and includes all headers in
sources, even if they are found by transitive includes.
2023-03-24 12:08:45 +00:00

20 lines
376 B
C

/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
* SPDX-License-Identifier: GPL-3.0-or-later */
#ifndef EMU_TRACE_H
#define EMU_TRACE_H
#include <limits.h>
#include "common.h"
struct trace {
char tracedir[PATH_MAX];
long nstreams;
struct stream *streams;
};
USE_RET int trace_load(struct trace *trace, const char *tracedir);
#endif /* EMU_TRACE_H */