Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into mc-process
[simgrid.git] / src / mc / mc_forward.h
1 /* Copyright (c) 2007-2014. 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 MC_FORWARD_H
8 #define MC_FORWARD_H
9
10 #include <mc/datatypes.h>
11 #include "mc_interface.h"
12
13 typedef struct s_mc_object_info s_mc_object_info_t, *mc_object_info_t;
14 typedef struct s_dw_type s_dw_type_t, *dw_type_t;
15 typedef struct s_memory_map s_memory_map_t, *memory_map_t;
16 typedef struct s_dw_variable s_dw_variable_t, *dw_variable_t;
17 typedef struct s_dw_frame s_dw_frame_t, *dw_frame_t;
18
19 typedef struct s_mc_pages_store s_mc_pages_store_t, *mc_pages_store_t;
20 typedef struct s_mc_snapshot s_mc_snapshot_t, *mc_snapshot_t;
21
22 typedef struct s_mc_process s_mc_process_t, * mc_process_t;
23 typedef struct s_mc_model_checker s_mc_model_checker_t, *mc_model_checker_t;
24 extern mc_model_checker_t mc_model_checker;
25
26 #endif