Add env hostname information
[lttng-modules.git] / lttng-abi.h
index aaeceb62091bd172b7b8291ca0e0dbd70c01253f..cf72b12b524bdabcaff018079e730fc8e902c6ac 100644 (file)
@@ -4,11 +4,23 @@
 /*
  * lttng-abi.h
  *
- * Copyright 2010 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
- *
  * LTTng ABI header
  *
- * Dual LGPL v2.1/GPL v2 license.
+ * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; only
+ * version 2.1 of the License.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include <linux/fs.h>
@@ -46,7 +58,6 @@ struct lttng_kernel_channel {
        char padding[LTTNG_KERNEL_CHANNEL_PADDING];
 };
 
-#define LTTNG_KERNEL_KRETPROBE_PADDING LTTNG_KERNEL_SYM_NAME_LEN + 32
 struct lttng_kernel_kretprobe {
        uint64_t addr;
 
@@ -57,7 +68,6 @@ struct lttng_kernel_kretprobe {
 /*
  * Either addr is used, or symbol_name and offset.
  */
-#define LTTNG_KERNEL_KPROBE_PADDING    LTTNG_KERNEL_SYM_NAME_LEN + 32
 struct lttng_kernel_kprobe {
        uint64_t addr;
 
@@ -65,7 +75,6 @@ struct lttng_kernel_kprobe {
        char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN];
 };
 
-#define LTTNG_KERNEL_FUNCTION_TRACER_PADDING   LTTNG_KERNEL_SYM_NAME_LEN + 32
 struct lttng_kernel_function_tracer {
        char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN];
 };
@@ -90,9 +99,9 @@ struct lttng_kernel_event {
 };
 
 struct lttng_kernel_tracer_version {
-       uint32_t version;
+       uint32_t major;
+       uint32_t minor;
        uint32_t patchlevel;
-       uint32_t sublevel;
 };
 
 enum lttng_kernel_calibrate_type {
@@ -114,6 +123,7 @@ enum lttng_kernel_context_type {
        LTTNG_KERNEL_CONTEXT_VTID               = 7,
        LTTNG_KERNEL_CONTEXT_PPID               = 8,
        LTTNG_KERNEL_CONTEXT_VPPID              = 9,
+       LTTNG_KERNEL_CONTEXT_HOSTNAME           = 10,
 };
 
 struct lttng_kernel_perf_counter_ctx {
This page took 0.024723 seconds and 4 git commands to generate.