2013-03-05 21:47:32 +08:00
|
|
|
/*
|
|
|
|
* Interface for configuring and controlling the state of tracing events.
|
|
|
|
*
|
2016-07-11 18:53:24 +08:00
|
|
|
* Copyright (C) 2012-2016 Lluís Vilanova <vilanova@ac.upc.edu>
|
2013-03-05 21:47:32 +08:00
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TRACE__EVENT_INTERNAL_H
|
|
|
|
#define TRACE__EVENT_INTERNAL_H
|
|
|
|
|
|
|
|
#include "trace/generated-events.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TraceEvent:
|
|
|
|
* @id: Unique event identifier.
|
2016-07-11 18:53:24 +08:00
|
|
|
* @vcpu_id: Unique per-vCPU event identifier.
|
2013-03-05 21:47:32 +08:00
|
|
|
* @name: Event name.
|
|
|
|
* @sstate: Static tracing state.
|
|
|
|
*
|
|
|
|
* Opaque generic description of a tracing event.
|
|
|
|
*/
|
|
|
|
typedef struct TraceEvent {
|
|
|
|
TraceEventID id;
|
2016-07-11 18:53:24 +08:00
|
|
|
TraceEventVCPUID vcpu_id;
|
2013-03-05 21:47:32 +08:00
|
|
|
const char * name;
|
|
|
|
const bool sstate;
|
|
|
|
} TraceEvent;
|
|
|
|
|
|
|
|
|
2016-06-29 21:29:06 +08:00
|
|
|
#endif /* TRACE__EVENT_INTERNAL_H */
|