65cafb5fdb992703a01c0d72422207be724caa45
2 * Copyright (C) 2011-2012 Julien Desfossez
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License Version 2 as
6 * published by the Free Software Foundation;
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 #include <babeltrace/babeltrace.h>
20 #include "lttngtoptypes.h"
24 void update_cputop_data(unsigned long timestamp
, int64_t cpu
, int prev_pid
,
25 int next_pid
, char *prev_comm
, char *next_comm
, char *hostname
)
27 struct cputime
*tmpcpu
;
28 unsigned long elapsed
;
30 tmpcpu
= get_cpu(cpu
);
32 if (tmpcpu
->current_task
&& tmpcpu
->current_task
->pid
== prev_pid
) {
33 elapsed
= timestamp
- tmpcpu
->task_start
;
34 tmpcpu
->current_task
->totalcpunsec
+= elapsed
;
35 tmpcpu
->current_task
->threadstotalcpunsec
+= elapsed
;
36 if (tmpcpu
->current_task
->threadparent
&&
37 tmpcpu
->current_task
->pid
!= tmpcpu
->current_task
->tid
)
38 tmpcpu
->current_task
->threadparent
->threadstotalcpunsec
+= elapsed
;
42 tmpcpu
->current_task
= get_proc(<tngtop
, next_pid
, next_comm
,
45 tmpcpu
->current_task
= NULL
;
47 tmpcpu
->task_start
= timestamp
;
50 enum bt_cb_ret
handle_sched_switch(struct bt_ctf_event
*call_data
,
53 const struct bt_definition
*scope
;
54 unsigned long timestamp
;
56 char *prev_comm
, *next_comm
;
57 int prev_tid
, next_tid
;
58 char *hostname
= NULL
;
60 timestamp
= bt_ctf_get_timestamp(call_data
);
61 if (timestamp
== -1ULL)
64 scope
= bt_ctf_get_top_level_scope(call_data
,
66 prev_comm
= bt_ctf_get_char_array(bt_ctf_get_field(call_data
,
67 scope
, "_prev_comm"));
68 if (bt_ctf_field_get_error()) {
69 fprintf(stderr
, "Missing prev_comm context info\n");
73 next_comm
= bt_ctf_get_char_array(bt_ctf_get_field(call_data
,
74 scope
, "_next_comm"));
75 if (bt_ctf_field_get_error()) {
76 fprintf(stderr
, "Missing next_comm context info\n");
80 prev_tid
= bt_ctf_get_int64(bt_ctf_get_field(call_data
,
82 if (bt_ctf_field_get_error()) {
83 fprintf(stderr
, "Missing prev_tid context info\n");
87 next_tid
= bt_ctf_get_int64(bt_ctf_get_field(call_data
,
89 if (bt_ctf_field_get_error()) {
90 fprintf(stderr
, "Missing next_tid context info\n");
94 cpu_id
= get_cpu_id(call_data
);
96 update_cputop_data(timestamp
, cpu_id
, prev_tid
, next_tid
,
97 prev_comm
, next_comm
, hostname
);
102 return BT_CB_ERROR_STOP
;
105 enum bt_cb_ret
handle_sched_process_free(struct bt_ctf_event
*call_data
,
108 const struct bt_definition
*scope
;
109 unsigned long timestamp
;
113 timestamp
= bt_ctf_get_timestamp(call_data
);
114 if (timestamp
== -1ULL)
117 scope
= bt_ctf_get_top_level_scope(call_data
,
119 comm
= bt_ctf_get_char_array(bt_ctf_get_field(call_data
,
121 if (bt_ctf_field_get_error()) {
122 fprintf(stderr
, "Missing procname context info\n");
126 tid
= bt_ctf_get_int64(bt_ctf_get_field(call_data
,
128 if (bt_ctf_field_get_error()) {
129 fprintf(stderr
, "Missing tid field\n");
133 death_proc(<tngtop
, tid
, comm
, timestamp
);
138 return BT_CB_ERROR_STOP
;
This page took 0.032107 seconds and 4 git commands to generate.