summaryrefslogtreecommitdiff
path: root/src/intersim/statwraper.h
diff options
context:
space:
mode:
authorTor Aamodt <[email protected]>2010-10-01 08:55:28 -0800
committerTor Aamodt <[email protected]>2010-10-01 08:55:28 -0800
commit11b308e7363e937966b035b4891db32b4eece3bf (patch)
tree50ca4c9ad6f163ac4acb2bf505e64dfebed66947 /src/intersim/statwraper.h
parentbb820c116764d7a1b8e071137d32b74e7f34dd2f (diff)
integrating recent changes from fermi-test into fermi
(i'll use "fermi" for more disruptive changes to the pipeline model such as updating the MSHRs and getting rid of the warp tracker, ripping out DWF, etc...) [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 7805]
Diffstat (limited to 'src/intersim/statwraper.h')
-rw-r--r--src/intersim/statwraper.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/intersim/statwraper.h b/src/intersim/statwraper.h
index 35ca6de..65c2ab9 100644
--- a/src/intersim/statwraper.h
+++ b/src/intersim/statwraper.h
@@ -1,13 +1,12 @@
#ifndef STAT_WRAPER_H
#define STAT_WRAPER_H
-void* StatCreate (const char * name, double bin_size, int num_bins) ;
+class Stats* StatCreate (const char * name, double bin_size, int num_bins) ;
void StatClear(void * st);
void StatAddSample (void * st, int val);
double StatAverage(void * st) ;
double StatMax(void * st) ;
double StatMin(void * st) ;
void StatDisp (void * st);
-void StatDumptofile (void * st, FILE f);
#endif