Stefan Hajnoczi | 26f7227 | 2010-05-22 19:24:51 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Simple trace backend |
| 3 | * |
| 4 | * Copyright IBM, Corp. 2010 |
| 5 | * |
| 6 | * This work is licensed under the terms of the GNU GPL, version 2. See |
| 7 | * the COPYING file in the top-level directory. |
| 8 | * |
| 9 | */ |
| 10 | |
Lluís | edb47ec | 2011-08-31 20:30:57 +0200 | [diff] [blame] | 11 | #ifndef TRACE_SIMPLE_H |
| 12 | #define TRACE_SIMPLE_H |
Stefan Hajnoczi | 26f7227 | 2010-05-22 19:24:51 +0100 | [diff] [blame] | 13 | |
| 14 | #include <stdint.h> |
Prerna Saxena | 22890ab | 2010-06-24 17:04:53 +0530 | [diff] [blame] | 15 | #include <stdbool.h> |
| 16 | #include <stdio.h> |
Stefan Hajnoczi | 26f7227 | 2010-05-22 19:24:51 +0100 | [diff] [blame] | 17 | |
| 18 | typedef uint64_t TraceEventID; |
| 19 | |
Prerna Saxena | 22890ab | 2010-06-24 17:04:53 +0530 | [diff] [blame] | 20 | typedef struct { |
| 21 | const char *tp_name; |
| 22 | bool state; |
| 23 | } TraceEvent; |
| 24 | |
Stefan Hajnoczi | 26f7227 | 2010-05-22 19:24:51 +0100 | [diff] [blame] | 25 | void trace0(TraceEventID event); |
| 26 | void trace1(TraceEventID event, uint64_t x1); |
| 27 | void trace2(TraceEventID event, uint64_t x1, uint64_t x2); |
| 28 | void trace3(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3); |
| 29 | void trace4(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4); |
| 30 | void trace5(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4, uint64_t x5); |
| 31 | void trace6(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4, uint64_t x5, uint64_t x6); |
Stefan Weil | 0b2c508 | 2010-11-15 21:17:06 +0100 | [diff] [blame] | 32 | void st_print_trace(FILE *stream, fprintf_function stream_printf); |
Stefan Weil | 0b2c508 | 2010-11-15 21:17:06 +0100 | [diff] [blame] | 33 | void st_print_trace_file_status(FILE *stream, fprintf_function stream_printf); |
Stefan Hajnoczi | c5ceb52 | 2010-07-13 09:26:33 +0100 | [diff] [blame] | 34 | void st_set_trace_file_enabled(bool enable); |
| 35 | bool st_set_trace_file(const char *file); |
| 36 | void st_flush_trace_buffer(void); |
Stefan Hajnoczi | 26f7227 | 2010-05-22 19:24:51 +0100 | [diff] [blame] | 37 | |
Lluís | edb47ec | 2011-08-31 20:30:57 +0200 | [diff] [blame] | 38 | #endif /* TRACE_SIMPLE_H */ |