Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Implement a generic resource; use it as ancestor to specific ones
[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   s_surf_resource_t generic_resource;
22   char *name;
23   double power_scale;
24   double power_current;
25   tmgr_trace_event_t power_event;
26   e_surf_cpu_state_t state_current;
27   tmgr_trace_event_t state_event;
28   lmm_constraint_t constraint;
29   /*Handles the properties that can be added to cpu's */
30   xbt_dict_t properties;
31 } s_cpu_Cas01_t, *cpu_Cas01_t;
32
33 #endif /* _SURF_CPU_PRIVATE_H */