Code cleanup in contexts
[lttng-ust.git] / liblttng-ust / lttng-context-pthread-id.c
1 /*
2 * lttng-context-pthread-id.c
3 *
4 * LTTng UST pthread_id context.
5 *
6 * Copyright (C) 2009-2011 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 <pthread.h>
25 #include <lttng/ust-events.h>
26 #include <lttng/ust-tracer.h>
27 #include <lttng/ringbuffer-config.h>
28
29 static
30 size_t pthread_id_get_size(struct lttng_ctx_field *field, size_t offset)
31 {
32 size_t size = 0;
33
34 size += lib_ring_buffer_align(offset, lttng_alignof(unsigned long));
35 size += sizeof(unsigned long);
36 return size;
37 }
38
39 static
40 void pthread_id_record(struct lttng_ctx_field *field,
41 struct lttng_ust_lib_ring_buffer_ctx *ctx,
42 struct lttng_channel *chan)
43 {
44 unsigned long pthread_id;
45
46 pthread_id = (unsigned long) pthread_self();
47 lib_ring_buffer_align_ctx(ctx, lttng_alignof(pthread_id));
48 chan->ops->event_write(ctx, &pthread_id, sizeof(pthread_id));
49 }
50
51 static
52 void pthread_id_get_value(struct lttng_ctx_field *field,
53 struct lttng_ctx_value *value)
54 {
55 value->u.s64 = (unsigned long) pthread_self();
56 }
57
58 int lttng_add_pthread_id_to_ctx(struct lttng_ctx **ctx)
59 {
60 struct lttng_ctx_field *field;
61
62 field = lttng_append_context(ctx);
63 if (!field)
64 return -ENOMEM;
65 if (lttng_find_context(*ctx, "pthread_id")) {
66 lttng_remove_context_field(ctx, field);
67 return -EEXIST;
68 }
69 field->event_field.name = "pthread_id";
70 field->event_field.type.atype = atype_integer;
71 field->event_field.type.u.basic.integer.size = sizeof(unsigned long) * CHAR_BIT;
72 field->event_field.type.u.basic.integer.alignment = lttng_alignof(unsigned long) * CHAR_BIT;
73 field->event_field.type.u.basic.integer.signedness = lttng_is_signed_type(unsigned long);
74 field->event_field.type.u.basic.integer.reverse_byte_order = 0;
75 field->event_field.type.u.basic.integer.base = 10;
76 field->event_field.type.u.basic.integer.encoding = lttng_encode_none;
77 field->get_size = pthread_id_get_size;
78 field->record = pthread_id_record;
79 field->get_value = pthread_id_get_value;
80 lttng_context_update(*ctx);
81 return 0;
82 }
This page took 0.030814 seconds and 4 git commands to generate.