cleanup: function attribute 'unused'
[lttng-ust.git] / liblttng-ust / lttng-context-ip.c
CommitLineData
96f85541 1/*
c0c0989a 2 * SPDX-License-Identifier: LGPL-2.1-only
96f85541
MD
3 *
4 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
c0c0989a 6 * LTTng UST Instruction Pointer Context.
96f85541
MD
7 */
8
3fbec7dc 9#define _LGPL_SOURCE
9af5d97a 10#include <limits.h>
b4051ad8 11#include <stddef.h>
96f85541
MD
12#include <sys/types.h>
13#include <unistd.h>
14#include <lttng/ust-events.h>
15#include <lttng/ust-tracer.h>
0466ac28 16#include <lttng/ringbuffer-context.h>
96f85541 17
fc80554e
MJ
18#include "context-internal.h"
19
96f85541 20static
daacdbfc 21size_t ip_get_size(struct lttng_ust_ctx_field *field, size_t offset)
96f85541
MD
22{
23 size_t size = 0;
24
dc325c1d 25 size += lttng_ust_lib_ring_buffer_align(offset, lttng_ust_rb_alignof(void *));
96f85541
MD
26 size += sizeof(void *);
27 return size;
28}
29
30static
daacdbfc 31void ip_record(struct lttng_ust_ctx_field *field,
96f85541 32 struct lttng_ust_lib_ring_buffer_ctx *ctx,
e7bc0ef6 33 struct lttng_ust_channel_buffer *chan)
96f85541
MD
34{
35 void *ip;
36
37 ip = ctx->ip;
8936b6c0 38 chan->ops->event_write(ctx, &ip, sizeof(ip), lttng_ust_rb_alignof(ip));
96f85541
MD
39}
40
daacdbfc 41int lttng_add_ip_to_ctx(struct lttng_ust_ctx **ctx)
96f85541 42{
daacdbfc 43 struct lttng_ust_ctx_field *field;
a084756d
MD
44 struct lttng_ust_type_common *type;
45 int ret;
96f85541 46
a084756d 47 type = lttng_ust_create_type_integer(sizeof(void *) * CHAR_BIT,
dc325c1d 48 lttng_ust_rb_alignof(void *) * CHAR_BIT,
eae3c729 49 lttng_ust_is_signed_type(void *),
a084756d
MD
50 BYTE_ORDER, 16);
51 if (!type)
96f85541 52 return -ENOMEM;
a084756d
MD
53 field = lttng_append_context(ctx);
54 if (!field) {
55 ret = -ENOMEM;
56 goto error_context;
57 }
96f85541 58 if (lttng_find_context(*ctx, "ip")) {
a084756d
MD
59 ret = -EEXIST;
60 goto error_find_context;
96f85541 61 }
a084756d
MD
62 field->event_field->name = strdup("ip");
63 if (!field->event_field->name) {
64 ret = -ENOMEM;
65 goto error_name;
66 }
67 field->event_field->type = type;
96f85541
MD
68 field->get_size = ip_get_size;
69 field->record = ip_record;
b2cc986a 70 lttng_context_update(*ctx);
96f85541 71 return 0;
a084756d
MD
72
73error_name:
74error_find_context:
75 lttng_remove_context_field(ctx, field);
76error_context:
77 lttng_ust_destroy_type(type);
78 return ret;
96f85541 79}
This page took 0.032095 seconds and 4 git commands to generate.