Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
e032bdca32df3a3db6aab7a0405ef4acc1045866
[simgrid.git] / src / simdag / private.h
1 #ifndef SIMDAG_PRIVATE_H
2 #define SIMDAG_PRIVATE_H
3
4 #include "xbt/dict.h"
5
6 typedef struct SG_global {
7   xbt_dict_t workstations; /* workstation list */
8   int workstation_count; /* number of workstations */
9 } s_SG_global_t, *SG_global_t;
10
11 extern SG_global_t sg_global;
12
13 #endif