summaryrefslogtreecommitdiff
path: root/rts/ProfilerReport.h
blob: e2a1d539a47aff00c6eca4ec48aded42be3e1415 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* -----------------------------------------------------------------------------
 *
 * (c) The GHC Team, 1998-2017
 *
 * Generating cost-center profiler report
 *
 * ---------------------------------------------------------------------------*/

#ifndef PROFILER_REPORT_H
#define PROFILER_REPORT_H

#include <stdio.h>

#include "Rts.h"
#include "Profiling.h"

#include "BeginPrivate.h"

#ifdef PROFILING

void writeCCSReport( FILE *prof_file, CostCentreStack const *ccs,
                     ProfilerTotals totals );

#endif

#include "EndPrivate.h"

#endif /* PROFILER_REPORT_H */