2 * (C) Copyright 2009-2011 -
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 * Dual LGPL v2.1/GPL v2 license.
10 #include <linux/module.h>
11 #include <linux/slab.h>
12 #include <linux/sched.h>
13 #include "ltt-events.h"
14 #include "wrapper/ringbuffer/frontend_types.h"
15 #include "wrapper/vmalloc.h"
16 #include "ltt-tracer.h"
19 size_t tid_get_size(size_t offset
)
23 size
+= lib_ring_buffer_align(offset
, ltt_alignof(pid_t
));
24 size
+= sizeof(pid_t
);
29 void tid_record(struct lttng_ctx_field
*field
,
30 struct lib_ring_buffer_ctx
*ctx
,
31 struct ltt_channel
*chan
)
35 tid
= task_pid_nr(current
);
36 lib_ring_buffer_align_ctx(ctx
, ltt_alignof(tid
));
37 chan
->ops
->event_write(ctx
, &tid
, sizeof(tid
));
40 int lttng_add_tid_to_ctx(struct lttng_ctx
**ctx
)
42 struct lttng_ctx_field
*field
;
44 field
= lttng_append_context(ctx
);
47 if (lttng_find_context(*ctx
, "tid")) {
48 lttng_remove_context_field(ctx
, field
);
51 field
->event_field
.name
= "tid";
52 field
->event_field
.type
.atype
= atype_integer
;
53 field
->event_field
.type
.u
.basic
.integer
.size
= sizeof(pid_t
) * CHAR_BIT
;
54 field
->event_field
.type
.u
.basic
.integer
.alignment
= ltt_alignof(pid_t
) * CHAR_BIT
;
55 field
->event_field
.type
.u
.basic
.integer
.signedness
= is_signed_type(pid_t
);
56 field
->event_field
.type
.u
.basic
.integer
.reverse_byte_order
= 0;
57 field
->event_field
.type
.u
.basic
.integer
.base
= 10;
58 field
->event_field
.type
.u
.basic
.integer
.encoding
= lttng_encode_none
;
59 field
->get_size
= tid_get_size
;
60 field
->record
= tid_record
;
61 wrapper_vmalloc_sync_all();
64 EXPORT_SYMBOL_GPL(lttng_add_tid_to_ctx
);
66 MODULE_LICENSE("GPL and additional rights");
67 MODULE_AUTHOR("Mathieu Desnoyers");
68 MODULE_DESCRIPTION("Linux Trace Toolkit TID Context");
This page took 0.029887 seconds and 4 git commands to generate.