move everything out of trunk
[lttv.git] / lttng-xenomai / LinuxTraceToolkitViewer-0.8.61-xenoltt / lttv / lttv / xenoltt_sim.h.bkp
1 /* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Michel Dagenais
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 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
16 * MA 02111-1307, USA.
17 */
18
19 #ifndef XENOLTT_SIM_H
20 #define XENOLTT_SIM_H
21
22 #include <glib.h>
23 #include <lttv/state.h>
24 #include <lttv/stats.h>
25
26 // Hook wrapper. call_data is a trace context.
27 gboolean lttv_xenoltt_sim_hook_add_event_hooks(void *hook_data, void *call_data);
28 void lttv_xenoltt_sim_add_event_hooks(LttvTracesetStats *self);
29
30 // Hook wrapper. call_data is a trace context.
31 gboolean lttv_xenoltt_sim_hook_remove_event_hooks(void *hook_data, void *call_data);
32 void lttv_xenoltt_sim_remove_event_hooks(LttvTracesetStats *self);
33
34
35 typedef struct _ThreadEventData {
36 gulong address;
37 guint prio;
38 guint period;
39 LttTime creation_time;
40 GQuark name;
41 GArray* event_list;
42 } ThreadEventData;
43
44
45 typedef struct _EventData {
46 LttTime event_time;
47 GQuark name;
48 LttEvent* event;
49 } EventData;
50
51
52 typedef struct _RunningThread {
53 ThreadEventData* thread;
54 LttTime begin_time;
55 LttTime end_time;
56 } RunningThread;
57
58 static GArray *thread_event_list;
59 static GArray *running_thread;
60
61 void compute_simulation(guint index,guint period);
62
63 #endif // XENOLTT_SIM_H
This page took 0.030784 seconds and 4 git commands to generate.