X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a4b9c2131bcbd81e935a03d9f3bb0b7d0ae48c31..3df0b777791a70f16276ccecdb0ad5f2b524f65f:/src/include/mc/mc.h?ds=sidebyside diff --git a/src/include/mc/mc.h b/src/include/mc/mc.h index b502542fb8..53fb528bc2 100644 --- a/src/include/mc/mc.h +++ b/src/include/mc/mc.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2008-2021. 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. */ @@ -22,17 +22,17 @@ #define STD_HEAP_SIZE (sizeof(void*)<=4 ? (100*1024*1024) : (1ll*1024*1024*1024*1024)) -SG_BEGIN_DECL() +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 -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