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

Last change on this file since 136 was 136, checked in by rosiere, 15 years ago

1) Add new algo in ifetch queue
2) Add Cancel bit
3) new config

  • Property svn:keywords set to Id
File size: 312 bytes
Line 
1// $Id: workload.h 136 2009-10-20 18:52:15Z 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_164_gzip
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.