Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Bug fix and add a fonction indicating whether a constraint is active or not.
[simgrid.git] / src / surf / cpu_private.h
1 /* Authors: Arnaud Legrand                                                  */
2
3 /* This program is free software; you can redistribute it and/or modify it
4    under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef _SURF_CPU_PRIVATE_H
7 #define _SURF_CPU_PRIVATE_H
8
9 #include "surf/surf.h"
10 #include "surf/surf_private.h"
11
12 typedef struct surf_action_cpu {
13   s_surf_action_t generic_action;
14   lmm_variable_t variable;
15 } s_surf_action_cpu_t, *surf_action_cpu_t;
16
17 surf_cpu_resource_t surf_cpu_resource_init(void);
18
19 #endif                          /* _SURF_SURF_PRIVATE_H */