License text standardization, add missing licenses
[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 #include <pthread.h>
24 #include <lttng/ust-events.h>
25 #include <lttng/ust-tracer.h>
26 #include <lttng/ringbuffer-config.h>
27
28 static
29 size_t pthread_id_get_size(size_t offset)
30 {
31 size_t size = 0;
32
33 size += lib_ring_buffer_align(offset, lttng_alignof(unsigned long));
34 size += sizeof(unsigned long);
35 return size;
36 }
37
38 static
39 void pthread_id_record(struct lttng_ctx_field *field,
40 struct lttng_ust_lib_ring_buffer_ctx *ctx,
41 struct ltt_channel *chan)
42 {
43 unsigned long pthread_id;
44
45 pthread_id = (unsigned long) pthread_self();
46 lib_ring_buffer_align_ctx(ctx, lttng_alignof(pthread_id));
47 chan->ops->event_write(ctx, &pthread_id, sizeof(pthread_id));
48 }
49
50 int lttng_add_pthread_id_to_ctx(struct lttng_ctx **ctx)
51 {
52 struct lttng_ctx_field *field;
53
54 field = lttng_append_context(ctx);
55 if (!field)
56 return -ENOMEM;
57 if (lttng_find_context(*ctx, "pthread_id")) {
58 lttng_remove_context_field(ctx, field);
59 return -EEXIST;
60 }
61 field->event_field.name = "pthread_id";
62 field->event_field.type.atype = atype_integer;
63 field->event_field.type.u.basic.integer.size = sizeof(unsigned long) * CHAR_BIT;
64 field->event_field.type.u.basic.integer.alignment = lttng_alignof(unsigned long) * CHAR_BIT;
65 field->event_field.type.u.basic.integer.signedness = lttng_is_signed_type(unsigned long);
66 field->event_field.type.u.basic.integer.reverse_byte_order = 0;
67 field->event_field.type.u.basic.integer.base = 10;
68 field->event_field.type.u.basic.integer.encoding = lttng_encode_none;
69 field->get_size = pthread_id_get_size;
70 field->record = pthread_id_record;
71 return 0;
72 }
This page took 0.031066 seconds and 4 git commands to generate.