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.
21 #include <semaphore.h>
22 #include <babeltrace/ctf/events.h>
23 #include "lttngtoptypes.h"
26 #define NSEC_PER_USEC 1000
27 #define NSEC_PER_SEC 1000000000L
29 sem_t goodtodisplay
, goodtoupdate
, timer
, pause_sem
, end_trace_sem
, bootstrap
;
31 GPtrArray
*copies
; /* struct lttngtop */
32 GHashTable
*global_perf_liszt
;
37 GHashTable
*hostname_list
;
41 struct lttngtop
*data
;
43 struct processtop
*find_process_tid(struct lttngtop
*ctx
, int pid
, char *comm
);
44 struct processtop
* add_proc(struct lttngtop
*ctx
, int pid
, char *comm
,
45 unsigned long timestamp
);
46 struct processtop
* update_proc(struct processtop
* proc
, int pid
, int tid
,
47 int ppid
, int vpid
, int vtid
, int vppid
, char *comm
,
49 void add_thread(struct processtop
*parent
, struct processtop
*thread
);
50 struct processtop
* get_proc(struct lttngtop
*ctx
, int tid
, char *comm
,
51 unsigned long timestamp
);
53 struct processtop
*get_proc_pid(struct lttngtop
*ctx
, int tid
, int pid
,
54 unsigned long timestamp
);
56 void death_proc(struct lttngtop
*ctx
, int tid
, char *comm
,
57 unsigned long timestamp
);
58 struct cputime
* add_cpu(int cpu
);
59 struct cputime
* get_cpu(int cpu
);
60 struct lttngtop
* get_copy_lttngtop(unsigned long start
, unsigned long end
);
61 struct perfcounter
*add_perf_counter(GPtrArray
*perf
, GQuark quark
,
63 struct perfcounter
*get_perf_counter(const char *name
, struct processtop
*proc
,
65 void reset_global_counters(void);
67 /* common field access functions */
68 uint64_t get_cpu_id(const struct bt_ctf_event
*event
);
69 uint64_t get_context_tid(const struct bt_ctf_event
*event
);
70 uint64_t get_context_pid(const struct bt_ctf_event
*event
);
71 uint64_t get_context_ppid(const struct bt_ctf_event
*event
);
72 char *get_context_comm(const struct bt_ctf_event
*event
);
73 uint64_t get_context_vtid(const struct bt_ctf_event
*event
);
74 uint64_t get_context_vpid(const struct bt_ctf_event
*event
);
75 uint64_t get_context_vppid(const struct bt_ctf_event
*event
);
76 char *get_context_hostname(const struct bt_ctf_event
*event
);
78 enum bt_cb_ret
handle_statedump_process_state(struct bt_ctf_event
*call_data
,
81 struct tm
format_timestamp(uint64_t timestamp
);
83 int *lookup_tid_list(int tid
);
84 char *lookup_hostname_list(const char *hostname
);
86 #endif /* _COMMON_H */
This page took 0.044568 seconds and 4 git commands to generate.