attach to a process in gui or textdump + fix get_proc returning NULL for filtering
[lttngtop.git] / src / common.h
CommitLineData
1fc22eb4 1/*
aa15ac1c 2 * Copyright (C) 2011-2012 Julien Desfossez
1fc22eb4
JD
3 *
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;
7 *
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.
12 *
71bd7ce1
AM
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.
1fc22eb4
JD
16 */
17
18#ifndef _COMMON_H
19#define _COMMON_H
20
21#include <semaphore.h>
22#include <babeltrace/ctf/events.h>
23#include "lttngtoptypes.h"
24#include "cputop.h"
25
26#define NSEC_PER_USEC 1000
27#define NSEC_PER_SEC 1000000000L
28
29sem_t goodtodisplay, goodtoupdate, timer, pause_sem, end_trace_sem, bootstrap;
30
31GPtrArray *copies; /* struct lttngtop */
0d91c12a 32GHashTable *global_perf_liszt;
1fc22eb4 33
96aa77de
JD
34int opt_pid;
35
ae9e85c7
JD
36extern int quit;
37
1fc22eb4
JD
38struct lttngtop *data;
39
40struct processtop *find_process_tid(struct lttngtop *ctx, int pid, char *comm);
41struct processtop* add_proc(struct lttngtop *ctx, int pid, char *comm,
42 unsigned long timestamp);
43struct processtop* update_proc(struct processtop* proc, int pid, int tid,
1402044a 44 int ppid, int vpid, int vtid, int vppid, char *comm);
1fc22eb4
JD
45void add_thread(struct processtop *parent, struct processtop *thread);
46struct processtop* get_proc(struct lttngtop *ctx, int tid, char *comm,
47 unsigned long timestamp);
59288610
MB
48
49struct processtop *get_proc_pid(struct lttngtop *ctx, int tid, int pid,
50 unsigned long timestamp);
51
1fc22eb4
JD
52void death_proc(struct lttngtop *ctx, int tid, char *comm,
53 unsigned long timestamp);
54struct cputime* add_cpu(int cpu);
55struct cputime* get_cpu(int cpu);
56struct lttngtop* get_copy_lttngtop(unsigned long start, unsigned long end);
57struct perfcounter *add_perf_counter(GPtrArray *perf, GQuark quark,
58 unsigned long count);
59struct perfcounter *get_perf_counter(const char *name, struct processtop *proc,
60 struct cputime *cpu);
e05a35a6 61void reset_global_counters(void);
1fc22eb4 62
d67167cd 63/* common field access functions */
4adc8274
JD
64uint64_t get_cpu_id(const struct bt_ctf_event *event);
65uint64_t get_context_tid(const struct bt_ctf_event *event);
66uint64_t get_context_pid(const struct bt_ctf_event *event);
67uint64_t get_context_ppid(const struct bt_ctf_event *event);
68char *get_context_comm(const struct bt_ctf_event *event);
1402044a
JD
69uint64_t get_context_vtid(const struct bt_ctf_event *event);
70uint64_t get_context_vpid(const struct bt_ctf_event *event);
71uint64_t get_context_vppid(const struct bt_ctf_event *event);
d67167cd 72
928f18a6
MB
73enum bt_cb_ret handle_statedump_process_state(struct bt_ctf_event *call_data,
74 void *private_data);
75
b520ab45
JD
76struct tm format_timestamp(uint64_t timestamp);
77
1fc22eb4 78#endif /* _COMMON_H */
This page took 0.027263 seconds and 4 git commands to generate.