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

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

1) add counters_t type for interface
2) fix in check load in load_store_unit
3) add parameters (but not yet implemented)
4) change environment and add script (distcc_env.sh ...)
5) add warning if an unser change rename flag with l.mtspr instruction
6) ...

  • Property svn:keywords set to Id
File size: 311 bytes
Line 
1// $Id: workload.h 138 2010-05-12 17:34:01Z 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_175_vpr
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.