Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
OK, now clean structures are used for my objects. Forget about my uggly
[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_private.h"
10
11 typedef struct surf_action_cpu {
12   s_surf_action_t generic_action;
13   lmm_variable_t variable;
14 } s_surf_action_cpu_t, *surf_action_cpu_t;
15
16 typedef struct cpu {
17   surf_resource_t resource;   /* Any such object, added in a trace
18                                  should start by this field!!! */
19   const char *name;
20   xbt_maxmin_float_t power_scale;
21   xbt_maxmin_float_t current_power;
22 /*   tmgr_trace_t power_trace; */
23   tmgr_trace_event_t power_event;
24   e_surf_cpu_state_t current_state;
25 /*   tmgr_trace_t state_trace; */
26   tmgr_trace_event_t state_event;
27   lmm_constraint_t constraint;
28 } s_cpu_t, *cpu_t;
29
30 /* typedef struct surf_cpu_resource_extension_private { */
31 /* } s_surf_cpu_resource_extension_private_t; */
32
33 void surf_cpu_resource_init(const char *filename);
34
35
36 #endif                          /* _SURF_CPU_PRIVATE_H */