Introduce LTTNG_UST_MAP_POPULATE_POLICY environment variable
[lttng-ust.git] / liblttng-ust / lttng-context-ip.c
1 /*
2 * lttng-context-ip.c
3 *
4 * LTTng UST Instruction Pointer Context.
5 *
6 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; only
11 * version 2.1 of the License.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 #define _LGPL_SOURCE
24 #include <sys/types.h>
25 #include <unistd.h>
26 #include <lttng/ust-events.h>
27 #include <lttng/ust-tracer.h>
28 #include <lttng/ringbuffer-config.h>
29
30 static
31 size_t ip_get_size(struct lttng_ctx_field *field, size_t offset)
32 {
33 size_t size = 0;
34
35 size += lib_ring_buffer_align(offset, lttng_alignof(void *));
36 size += sizeof(void *);
37 return size;
38 }
39
40 static
41 void ip_record(struct lttng_ctx_field *field,
42 struct lttng_ust_lib_ring_buffer_ctx *ctx,
43 struct lttng_channel *chan)
44 {
45 void *ip;
46
47 ip = ctx->ip;
48 lib_ring_buffer_align_ctx(ctx, lttng_alignof(ip));
49 chan->ops->event_write(ctx, &ip, sizeof(ip));
50 }
51
52 int lttng_add_ip_to_ctx(struct lttng_ctx **ctx)
53 {
54 struct lttng_ctx_field *field;
55
56 field = lttng_append_context(ctx);
57 if (!field)
58 return -ENOMEM;
59 if (lttng_find_context(*ctx, "ip")) {
60 lttng_remove_context_field(ctx, field);
61 return -EEXIST;
62 }
63 field->event_field.name = "ip";
64 field->event_field.type.atype = atype_integer;
65 field->event_field.type.u.basic.integer.size = sizeof(void *) * CHAR_BIT;
66 field->event_field.type.u.basic.integer.alignment = lttng_alignof(void *) * CHAR_BIT;
67 field->event_field.type.u.basic.integer.signedness = lttng_is_signed_type(void *);
68 field->event_field.type.u.basic.integer.reverse_byte_order = 0;
69 field->event_field.type.u.basic.integer.base = 16;
70 field->event_field.type.u.basic.integer.encoding = lttng_encode_none;
71 field->get_size = ip_get_size;
72 field->record = ip_record;
73 lttng_context_update(*ctx);
74 return 0;
75 }
This page took 0.030049 seconds and 4 git commands to generate.