-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpholdio.h
More file actions
39 lines (32 loc) · 757 Bytes
/
pholdio.h
File metadata and controls
39 lines (32 loc) · 757 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
#ifndef INC_pholdio_h
#define INC_pholdio_h
#include <ross.h>
#include "pholdio-config.h"
/*
* PHOLDIO Types
*/
typedef struct pholdio_state pholdio_state;
typedef struct pholdio_message pholdio_message;
struct pholdio_state {
long int dummy_state;
};
struct pholdio_message {
long int dummy_data;
};
/*
* PHOLDIO Global Variable Declarations
*/
extern tw_stime lookahead;
extern unsigned int stagger;
extern unsigned int offset_lpid;
extern tw_stime mult;
extern tw_stime percent_remote;
extern unsigned int ttl_lps;
extern unsigned int nlp_per_pe;
extern int g_pholdio_start_events;
extern int optimistic_memory;
extern int io_store;
// rate for timestamp exponential distribution
extern tw_stime mean;
extern char run_id[1024];
#endif