Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines.
[simgrid.git] / src / include / mc / mc.h
1 /* Copyright (c) 2008-2021. 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_PRIVATE void MC_automaton_load(const char *file);
30
31 SG_END_DECL
32
33 #ifdef __cplusplus
34 XBT_PUBLIC void MC_process_clock_add(const simgrid::kernel::actor::ActorImpl*, double);
35 XBT_PUBLIC double MC_process_clock_get(const simgrid::kernel::actor::ActorImpl*);
36 #endif
37
38 #endif