2 * lttng-context-pthread-id.c
4 * LTTng UST pthread_id context.
6 * Copyright (C) 2009-2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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.
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.
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
24 #include <lttng/ust-events.h>
25 #include <lttng/ust-tracer.h>
26 #include <lttng/ringbuffer-config.h>
29 size_t pthread_id_get_size(size_t offset
)
33 size
+= lib_ring_buffer_align(offset
, lttng_alignof(unsigned long));
34 size
+= sizeof(unsigned long);
39 void pthread_id_record(struct lttng_ctx_field
*field
,
40 struct lttng_ust_lib_ring_buffer_ctx
*ctx
,
41 struct lttng_channel
*chan
)
43 unsigned long pthread_id
;
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
));
50 int lttng_add_pthread_id_to_ctx(struct lttng_ctx
**ctx
)
52 struct lttng_ctx_field
*field
;
54 field
= lttng_append_context(ctx
);
57 if (lttng_find_context(*ctx
, "pthread_id")) {
58 lttng_remove_context_field(ctx
, field
);
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
;