convert from svn repository: remove tags directory
[lttv.git] / trunk / lttng-xenomai / LinuxTraceToolkitViewer-0.8.61-xenoltt / lttv / lttv / xenoltt_sim.h.bkp
CommitLineData
03d7fdf3 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.
27gboolean lttv_xenoltt_sim_hook_add_event_hooks(void *hook_data, void *call_data);
28void lttv_xenoltt_sim_add_event_hooks(LttvTracesetStats *self);
29
30// Hook wrapper. call_data is a trace context.
31gboolean lttv_xenoltt_sim_hook_remove_event_hooks(void *hook_data, void *call_data);
32void lttv_xenoltt_sim_remove_event_hooks(LttvTracesetStats *self);
33
34
35typedef 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
45typedef struct _EventData {
46 LttTime event_time;
47 GQuark name;
48 LttEvent* event;
49} EventData;
50
51
52typedef struct _RunningThread {
53 ThreadEventData* thread;
54 LttTime begin_time;
55 LttTime end_time;
56} RunningThread;
57
58static GArray *thread_event_list;
59static GArray *running_thread;
60
61void compute_simulation(guint index,guint period);
62
63#endif // XENOLTT_SIM_H
This page took 0.031274 seconds and 4 git commands to generate.