Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Clean the communicate function.
[simgrid.git] / src / surf / cpu_private.h
1 /*      $Id$     */
2
3 /* Copyright (c) 2004 Arnaud Legrand. All rights reserved.                  */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef _SURF_CPU_PRIVATE_H
9 #define _SURF_CPU_PRIVATE_H
10
11 #include "surf_private.h"
12 #include "xbt/dict.h"
13
14 typedef struct surf_action_cpu_Cas01 {
15   s_surf_action_t generic_action;
16   lmm_variable_t variable;
17   int suspended;  
18 } s_surf_action_cpu_Cas01_t, *surf_action_cpu_Cas01_t;
19
20 typedef struct cpu_Cas01 {
21   surf_model_t model;   /* Any such object, added in a trace
22                                    should start by this field!!! */
23   char *name;
24   double power_scale;
25   double power_current;
26   tmgr_trace_event_t power_event;
27   e_surf_cpu_state_t state_current;
28   tmgr_trace_event_t state_event;
29   lmm_constraint_t constraint;
30   /*Handles the properties that can be added to cpu's*/
31   xbt_dict_t properties;
32 } s_cpu_Cas01_t, *cpu_Cas01_t;
33
34 extern xbt_dict_t cpu_set;
35
36 #endif                          /* _SURF_CPU_PRIVATE_H */