scsi: megasas: use appropriate property buffer size
[qemu/ar7.git] / trace / event-internal.h
blob86f6a511be4aced7c71e9410f499e9a89f794b03
1 /*
2 * Interface for configuring and controlling the state of tracing events.
4 * Copyright (C) 2012 LluĂ­s Vilanova <vilanova@ac.upc.edu>
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 */
10 #ifndef TRACE__EVENT_INTERNAL_H
11 #define TRACE__EVENT_INTERNAL_H
13 #include "trace/generated-events.h"
16 /**
17 * TraceEvent:
18 * @id: Unique event identifier.
19 * @name: Event name.
20 * @sstate: Static tracing state.
22 * Opaque generic description of a tracing event.
24 typedef struct TraceEvent {
25 TraceEventID id;
26 const char * name;
27 const bool sstate;
28 } TraceEvent;
31 #endif /* TRACE__EVENT_INTERNAL_H */