Major changes of command processing for sessiond
[lttng-tools.git] / ltt-sessiond / trace.h
CommitLineData
fda89c9b
DG
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
18
19#ifndef _LTT_TRACE_H
20#define _LTT_TRACE_H
21
5461b305 22#include "ltt-sessiond.h"
d4a2a84a
DG
23#include "session.h"
24
fda89c9b 25/* LTTng trace representation */
1657e9bb 26struct ltt_kernel_trace {
fda89c9b 27 struct cds_list_head list;
1657e9bb 28 char name[NAME_MAX];
fda89c9b
DG
29 struct cds_list_head marker_list;
30};
31
32/* UST trace representation */
33struct ltt_ust_trace {
34 struct cds_list_head list;
1657e9bb 35 char name[NAME_MAX];
fda89c9b
DG
36 int shmid;
37 pid_t pid;
38 struct cds_list_head markers;
39};
40
41struct ltt_ust_marker {
42 struct cds_list_head list;
43 char *name;
44 char *channel;
45};
46
1657e9bb
DG
47int get_trace_count_per_session(struct ltt_session *session);
48void get_traces_per_session(struct ltt_session *session, struct lttng_trace *traces);
5461b305
DG
49int ust_create_trace(struct command_ctx *cmd_ctx);
50int ust_start_trace(struct command_ctx *cmd_ctx);
51int ust_stop_trace(struct command_ctx *cmd_ctx);
d4a2a84a 52
fda89c9b 53#endif /* _LTT_TRACE_H */
This page took 0.024773 seconds and 4 git commands to generate.