File: trace.h

package info (click to toggle)
skiboot 7.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 35,624 kB
  • sloc: ansic: 221,198; sh: 11,580; cpp: 5,767; python: 3,421; makefile: 1,773; asm: 1,503; perl: 1,479; tcl: 1,188; pascal: 107
file content (28 lines) | stat: -rw-r--r-- 637 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
/*
 * Copyright 2013-2019 IBM Corp.
 */
#ifndef E_TRACE_H
#define E_TRACE_H

#include <stdbool.h>
#include <types.h>
#include <trace.h>
#include <trace_types.h>

struct trace_reader {
	/* This is where the reader is up to. */
	u64 rpos;
	/* If the last one we read was a repeat, this shows how many. */
	u32 last_repeat;
	struct list_head traces;
	struct tracebuf *tb;
};

/* Is this tracebuf empty? */
bool trace_empty(const struct trace_reader *tr);

/* Get the next trace from this buffer (false if empty). */
bool trace_get(union trace *t, struct trace_reader *tr);

#endif