ovni/trace.h

21 lines
483 B
C
Raw Normal View History

2022-09-19 12:39:02 +02:00
/* Copyright (c) 2021 Barcelona Supercomputing Center (BSC)
* SPDX-License-Identifier: GPL-3.0-or-later */
2021-10-26 18:42:41 +02:00
2021-07-28 11:56:35 +02:00
#ifndef OVNI_TRACE_H
#define OVNI_TRACE_H
#include "emu.h"
#include "ovni.h"
2021-07-28 11:56:35 +02:00
2021-07-30 20:08:40 +02:00
int ovni_load_next_event(struct ovni_stream *stream);
2021-07-28 11:56:35 +02:00
int ovni_load_trace(struct ovni_trace *trace, char *tracedir);
int ovni_load_streams(struct ovni_trace *trace);
void ovni_free_streams(struct ovni_trace *trace);
2021-11-18 14:53:15 +01:00
void ovni_free_trace(struct ovni_trace *trace);
2021-07-28 11:56:35 +02:00
#endif /* OVNI_TRACE_H */