]> AND Public Git Repository - simgrid.git/blobdiff - src/include/mc/mc.h
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add note about resetting `times_considered`
[simgrid.git] / src / include / mc / mc.h
index c662db508fb52314bfc899a76d8ecadf0e3c7a79..5784e5a49d48cc6400aad4481e5fc638e78eb958 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2008-2019. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2008-2023. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -9,30 +9,9 @@
 #include <simgrid/forward.h>
 #include <simgrid/modelchecker.h> /* our public interface (and definition of SIMGRID_HAVE_MC) */
 
-/* Maximum size of the application heap.
- *
- * The model-checker heap is placed at this offset from the beginning of the application heap.
- *
- * In the current implementation, if the application uses more than this for the application heap the application heap
- * will smash the beginning of the model-checker heap and bad things will happen.
- *
- * For 64 bits systems, we have a lot of virtual memory available so we wan use a much bigger value in order to avoid
- * bad things from happening.
- * */
-
-#define STD_HEAP_SIZE   (sizeof(void*)<=4 ? (100*1024*1024) : (1ll*1024*1024*1024*1024))
-
-SG_BEGIN_DECL
-
-/********************************* Global *************************************/
-XBT_ATTRIB_NORETURN XBT_PUBLIC void MC_run();
-XBT_PUBLIC void MC_process_clock_add(smx_actor_t, double);
-XBT_PUBLIC double MC_process_clock_get(smx_actor_t);
-XBT_PRIVATE void MC_automaton_load(const char *file);
-
-/********************************* Memory *************************************/
-XBT_PUBLIC void MC_memory_init(); /* Initialize the memory subsystem */
-
-SG_END_DECL
+#ifdef __cplusplus
+XBT_PUBLIC void MC_process_clock_add(const simgrid::kernel::actor::ActorImpl*, double);
+XBT_PUBLIC double MC_process_clock_get(const simgrid::kernel::actor::ActorImpl*);
+#endif
 
 #endif