Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix sleep for storage
[simgrid.git] / src / surf / storage_private.h
1 /*
2  * storage_private.h
3  *
4  *  Created on: 2 mars 2012
5  *      Author: navarro
6  */
7
8 #ifndef STORAGE_PRIVATE_H_
9 #define STORAGE_PRIVATE_H_
10
11 typedef struct storage {
12   s_surf_resource_t generic_resource;   /*< Structure with generic data. Needed at begin to interate with SURF */
13   e_surf_resource_state_t state_current;        /*< STORAGE current state (ON or OFF) */
14   lmm_constraint_t constraint;
15 } s_storage_t, *storage_t;
16
17 typedef struct surf_action_storage {
18   s_surf_action_lmm_t generic_lmm_action;
19   int index_heap;
20 } s_surf_action_storage_t, *surf_action_storage_t;
21
22 #endif /* STORAGE_PRIVATE_H_ */