Add kernel open metadata support to session daemon
[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 23#include "session.h"
20fe2104 24#include "lttng-kernel.h"
d4a2a84a 25
20fe2104
DG
26/* Kernel event list */
27struct ltt_kernel_event_list {
28 struct cds_list_head head;
29};
30
31/* Kernel event */
32struct ltt_kernel_event {
20fe2104 33 int fd;
f34daff7 34 struct lttng_kernel_event *event;
20fe2104
DG
35 struct cds_list_head list;
36};
37
38/* Kernel channel */
39struct ltt_kernel_channel {
40 int fd;
9cb98350 41 struct lttng_kernel_channel *channel;
20fe2104
DG
42 struct ltt_kernel_event_list events_list;
43};
44
aaf26714
DG
45/* Metadata */
46struct ltt_kernel_metadata {
47 int fd;
48 struct lttng_kernel_channel *conf;
49};
50
20fe2104
DG
51/* Kernel session */
52struct ltt_kernel_session {
53 int fd;
aaf26714 54 struct ltt_kernel_metadata *metadata;
20fe2104 55 struct ltt_kernel_channel *channel;
fda89c9b
DG
56};
57
58/* UST trace representation */
59struct ltt_ust_trace {
60 struct cds_list_head list;
1657e9bb 61 char name[NAME_MAX];
fda89c9b
DG
62 int shmid;
63 pid_t pid;
64 struct cds_list_head markers;
65};
66
67struct ltt_ust_marker {
68 struct cds_list_head list;
69 char *name;
70 char *channel;
71};
72
1657e9bb
DG
73int get_trace_count_per_session(struct ltt_session *session);
74void get_traces_per_session(struct ltt_session *session, struct lttng_trace *traces);
5461b305
DG
75int ust_create_trace(struct command_ctx *cmd_ctx);
76int ust_start_trace(struct command_ctx *cmd_ctx);
77int ust_stop_trace(struct command_ctx *cmd_ctx);
d4a2a84a 78
fda89c9b 79#endif /* _LTT_TRACE_H */
This page took 0.026389 seconds and 4 git commands to generate.