Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Relic of the star removal.
[simgrid.git] / src / surf / surf_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_SURF_PRIVATE_H
9 #define _SURF_SURF_PRIVATE_H
10
11 #include "surf/surf.h"
12 #include "surf/maxmin.h"
13 #include "surf/trace_mgr.h"
14 #include "xbt/log.h"
15 #include "surf/surf_parse.h"
16
17 #define NO_MAX_DURATION -1.0
18
19 typedef struct surf_resource_private {
20   int (*resource_used)(void *resource_id);
21   /* Share the resources to the actions and return in hom much time
22       the next action may terminate */
23   xbt_heap_float_t(*share_resources) (xbt_heap_float_t now);    
24   /* Update the actions' state */
25   void (*update_actions_state) (xbt_heap_float_t now, xbt_heap_float_t delta);
26   void (*update_resource_state) (void *id,tmgr_trace_event_t event_type, xbt_maxmin_float_t value);
27   void (*finalize)(void);
28 } s_surf_resource_private_t;
29
30 /* #define pub2priv(r) ((surf_resource_private_t) ((char *)(r) -(sizeof(struct surf_resource_private_part)))) */
31 /* #define priv2pub(r) ((void *) ((char *)(r) +(sizeof(struct surf_resource_private_part)))) */
32
33 xbt_heap_float_t generic_maxmin_share_resources(xbt_swag_t running_actions,
34                                                 size_t offset);
35 /* Generic functions common to all ressources */
36 e_surf_action_state_t surf_action_get_state(surf_action_t action);
37 void surf_action_free(surf_action_t * action);
38 void surf_action_change_state(surf_action_t action, e_surf_action_state_t state);
39
40 extern xbt_dynar_t resource_list;
41 extern lmm_system_t maxmin_system;
42 extern tmgr_history_t history;
43
44 #endif                          /* _SURF_SURF_PRIVATE_H */