Major changes on the lttng command line tool
[lttng-tools.git] / ltt-sessiond / ltt-sessiond.h
CommitLineData
fac6795d
DG
1/* Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
2 *
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU General Public License
5 * as published by the Free Software Foundation; either version 2
6 * of the License, or (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
fac6795d
DG
16 */
17
18#ifndef _LTT_SESSIOND_H
19#define _LTT_SESSIOND_H
20
ca95a216 21#define DEFAULT_HOME_DIR "/tmp"
686204ab
MD
22#define DEFAULT_UST_SOCK_DIR "/tmp/ust-app-socks"
23#define DEFAULT_GLOBAL_APPS_PIPE "/tmp/ust-app-socks/global"
24
25extern const char default_home_dir[],
26 default_tracing_group[],
27 default_ust_sock_dir[],
28 default_global_apps_pipe[];
fac6795d 29
5461b305
DG
30/*
31 * This contains extra data needed for processing a command received by the
32 * session daemon from the lttng client.
33 */
34struct command_ctx {
35 int ust_sock;
36 unsigned int lttng_msg_size;
37 struct ltt_session *session;
38 struct lttcomm_lttng_msg *llm;
39 struct lttcomm_session_msg *lsm;
40};
41
fac6795d 42#endif /* _LTT_SESSIOND_H */
This page took 0.026842 seconds and 4 git commands to generate.