source: trunk/Softwares/SPECINT2000/src/include/workload.h @ 145

Last change on this file since 145 was 145, checked in by rosiere, 14 years ago

1) add test with SPECINT2K
2) new config of Selftest
3) modif RAT to support multiple depth_save ... but not finish (need fix Update Prediction Table)
4) add Function_pointer but need fix

  • Property svn:keywords set to Id
File size: 313 bytes
Line 
1// $Id: workload.h 145 2010-10-13 18:15:51Z rosiere $
2
3#ifndef workload_h
4#define workload_h
5
6#include "benchmark.h"
7
8/*
9 * Array of function's pointer
10 */
11
12void (*WorkLoad[])() = 
13{ 
14        (void *) run_300_twolf
15};
16
17#define NB_WORKLOAD   (sizeof(WorkLoad)/sizeof(void *))
18
19# ifndef NB_THREAD_MAX
20#  error "NB_THREAD_MAX is undefined"
21# endif
22
23#endif //workload_h
Note: See TracBrowser for help on using the repository browser.