2 * Copyright (C) 2014 - David Goulet <dgoulet@efficios.com>
4 * This library is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License, version 2.1 only,
6 * as published by the Free Software Foundation.
8 * This library is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this library; if not, write to the Free Software Foundation,
15 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 #ifndef LTTNG_DOMAIN_H
19 #define LTTNG_DOMAIN_H
25 #include <lttng/constant.h>
28 * Domain types: the different possible tracers.
30 enum lttng_domain_type
{
31 LTTNG_DOMAIN_NONE
= 0, /* No associated domain. */
32 LTTNG_DOMAIN_KERNEL
= 1, /* Linux Kernel tracer. */
33 LTTNG_DOMAIN_UST
= 2, /* Global Userspace tracer. */
34 LTTNG_DOMAIN_JUL
= 3, /* Java Util Logging. */
35 LTTNG_DOMAIN_LOG4J
= 4, /* Java Log4j Framework. */
36 LTTNG_DOMAIN_PYTHON
= 5, /* Python logging Framework. */
39 /* Buffer type for a specific domain. */
40 enum lttng_buffer_type
{
41 LTTNG_BUFFER_PER_PID
, /* Only supported by UST being the default. */
42 LTTNG_BUFFER_PER_UID
, /* Only supported by UST. */
43 LTTNG_BUFFER_GLOBAL
, /* Only supported by the Kernel. */
47 * The structures should be initialized to zero before use.
49 #define LTTNG_DOMAIN_PADDING1 12
50 #define LTTNG_DOMAIN_PADDING2 LTTNG_SYMBOL_NAME_LEN + 32
52 enum lttng_domain_type type
;
53 enum lttng_buffer_type buf_type
;
54 char padding
[LTTNG_DOMAIN_PADDING1
];
58 char exec_name
[LTTNG_NAME_MAX
];
59 char padding
[LTTNG_DOMAIN_PADDING2
];
64 * List the registered domain(s) of a session.
66 * Session name CAN NOT be NULL.
68 * Return the size (number of entries) of the "lttng_domain" array. Caller
69 * must free domains. On error, a negative LTTng error code is returned.
71 extern int lttng_list_domains(const char *session_name
,
72 struct lttng_domain
**domains
);
78 #endif /* LTTNG_DOMAIN_H */