Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
1cb5edf5b1215a485c12ff482118f262826f4349
[simgrid.git] / src / include / surf / datatypes.h
1 /* Copyright (c) 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef MAXMIN_DATATYPES_H
8 #define MAXMIN_DATATYPES_H
9
10 /** \ingroup SURF_models
11  *  \brief Model datatype
12  *
13  *  Generic data structure for a model. The workstations,
14  *  the CPUs and the network links are examples of models.
15  */
16 typedef struct surf_model *surf_model_t;
17
18 /** \ingroup SURF_actions
19  *  \brief Action datatype
20  *
21  * An action is some working amount on a model.
22  * It is represented as a cost, a priority, a duration and a state.
23  */
24 typedef struct surf_action *surf_action_t;
25 typedef struct surf_file *surf_file_t;
26 typedef struct surf_stat *surf_stat_t;
27
28 typedef struct tmgr_history *tmgr_history_t;
29 typedef struct tmgr_trace_event *tmgr_trace_event_t;
30
31
32 #endif                          /* MAXMIN_DATATYPES_H */