Remove dependency on libuuid
[lttng-tools.git] / ltt-sessiond / session.h
CommitLineData
91d76f53 1/*
5b74c7b1
DG
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_SESSION_H
20#define _LTT_SESSION_H
21
5b97ec60 22#include <lttng/lttng.h>
20fe2104 23#include <urcu/list.h>
d4a2a84a 24
5b74c7b1
DG
25/* Global session list */
26struct ltt_session_list {
27 struct cds_list_head head;
28};
29
1d4b027a
DG
30extern struct ltt_session_list ltt_session_list;
31
5b74c7b1
DG
32/* ltt-session - This data structure contains information needed
33 * to identify a tracing session for both LTTng and UST.
34 */
35struct ltt_session {
5b74c7b1 36 struct cds_list_head list;
20fe2104 37 char *name;
f3ed775e 38 char *path;
5b74c7b1 39 struct cds_list_head ust_traces;
20fe2104 40 struct ltt_kernel_session *kernel_session;
1657e9bb 41 unsigned int ust_trace_count;
20fe2104 42 unsigned int kern_session_count;
5b74c7b1 43 pid_t ust_consumer;
5b74c7b1
DG
44};
45
46/* Prototypes */
f3ed775e
DG
47int create_session(char *name, char *path);
48int destroy_session(char *name);
5461b305 49void get_lttng_session(struct lttng_session *sessions);
5b74c7b1
DG
50struct ltt_session *find_session_by_name(char *name);
51unsigned int get_session_count(void);
8c0faa1d 52struct ltt_session_list *get_session_list(void);
5b74c7b1
DG
53
54#endif /* _LTT_SESSION_H */
This page took 0.024688 seconds and 4 git commands to generate.