Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b502542fb86afeb9d61073830cf0931cde7699e6
[simgrid.git] / src / include / mc / mc.h
1 /* Copyright (c) 2008-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef MC_MC_H
7 #define MC_MC_H
8
9 #include <simgrid/forward.h>
10 #include <simgrid/modelchecker.h> /* our public interface (and definition of SIMGRID_HAVE_MC) */
11
12 /* Maximum size of the application heap.
13  *
14  * The model-checker heap is placed at this offset from the beginning of the application heap.
15  *
16  * In the current implementation, if the application uses more than this for the application heap the application heap
17  * will smash the beginning of the model-checker heap and bad things will happen.
18  *
19  * For 64 bits systems, we have a lot of virtual memory available so we wan use a much bigger value in order to avoid
20  * bad things from happening.
21  * */
22
23 #define STD_HEAP_SIZE   (sizeof(void*)<=4 ? (100*1024*1024) : (1ll*1024*1024*1024*1024))
24
25 SG_BEGIN_DECL()
26
27 /********************************* Global *************************************/
28 XBT_ATTRIB_NORETURN XBT_PUBLIC void MC_run();
29 XBT_PUBLIC void MC_process_clock_add(smx_actor_t, double);
30 XBT_PUBLIC double MC_process_clock_get(smx_actor_t);
31 XBT_PRIVATE void MC_automaton_load(const char *file);
32
33 /********************************* Memory *************************************/
34 XBT_PUBLIC void MC_memory_init(); /* Initialize the memory subsystem */
35
36 SG_END_DECL()
37
38 #endif