Move some functions around to improve overall structure
[lttv.git] / lttv / lttv / sync / graph_functions.h
CommitLineData
467066ee
BP
1/* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2009 Benjamin Poirier <benjamin.poirier@polymtl.ca>
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 GRAPH_FUNCTIONS_H
20#define GRAPH_FUNCTIONS_H
21
22struct _SyncState;
23
66eaf2eb
BP
24typedef void (GraphVariableFunction)(struct _SyncState* const syncState, const
25 unsigned int i);
467066ee
BP
26typedef void (GraphFunction)(struct _SyncState* const syncState, const
27 unsigned int i, const unsigned int j);
28
29typedef struct
30{
66eaf2eb 31 GraphVariableFunction* writeVariables;
467066ee
BP
32 /* This is for graphs where the data on both axis is in the range of
33 * timestamps */
c6356aa7
BP
34 GraphFunction* writeTraceTraceForePlots;
35 GraphFunction* writeTraceTraceBackPlots;
467066ee
BP
36 GraphFunction* writeTraceTraceOptions;
37 /* This is for graphs where the data on the abscissa is in the range of
38 * timestamps and the ordinates is in the range of timestamp deltas */
c6356aa7
BP
39 GraphFunction* writeTraceTimeForePlots;
40 GraphFunction* writeTraceTimeBackPlots;
467066ee
BP
41 GraphFunction* writeTraceTimeOptions;
42} GraphFunctions;
43
44
1d597550
BP
45FILE* createGraphsDir(const char* const graphsDir);
46char* changeToGraphsDir(const char* const graphsDir);
467066ee
BP
47void writeGraphsScript(struct _SyncState* const syncState);
48
49#endif
This page took 0.024302 seconds and 4 git commands to generate.