fix leak, enhance error values
[ltt-control.git] / trunk / obsolete / ltt-modules / ltt-control.h
CommitLineData
84425e52 1#ifndef _LTT_CONTROL_H
2#define _LTT_CONTROL_H
3
4
5//enum trace_mode {
6// TRACE_NORMAL,
7// TRACE_FLIGHT
8//};
9
10enum trace_op {
11 OP_CREATE,
12 OP_DESTROY,
13 OP_START,
14 OP_STOP,
15 OP_ALIGN,
16 OP_NONE
17};
18
19typedef struct lttctl_peer_msg {
20 char trace_name[NAME_MAX];
21 enum trace_op op;
22 union ltt_control_args args;
23} lttctl_peer_msg_t;
24
25#endif //_LTT_CONTROL_H
26
This page took 0.022386 seconds and 4 git commands to generate.