Commit | Line | Data |
---|---|---|
5dc18550 DG |
1 | /* |
2 | * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca> | |
3 | * David Goulet <david.goulet@polymtl.ca> | |
4 | * | |
d14d33bf AM |
5 | * This program is free software; you can redistribute it and/or modify |
6 | * it under the terms of the GNU General Public License, version 2 only, | |
7 | * as published by the Free Software Foundation. | |
5dc18550 DG |
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 | * | |
d14d33bf AM |
14 | * You should have received a copy of the GNU General Public License along |
15 | * with this program; if not, write to the Free Software Foundation, Inc., | |
16 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
5dc18550 DG |
17 | */ |
18 | ||
3bd1e081 MD |
19 | #ifndef _LTTNG_CONSUMERD_H |
20 | #define _LTTNG_CONSUMERD_H | |
5dc18550 | 21 | |
748b7b07 MD |
22 | |
23 | #define NR_LTTNG_CONSUMER_READY 1 | |
24 | extern int lttng_consumer_ready; | |
25 | ||
6c71277b MD |
26 | const char *tracing_group_name; |
27 | ||
5c635c72 MD |
28 | enum lttng_consumer_type lttng_consumer_get_type(void); |
29 | ||
3bd1e081 | 30 | #endif /* _LTTNG_CONSUMERD_H */ |