Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
further simpify the MC initialization on app side
[simgrid.git] / src / include / mc / mc.h
1 /* Copyright (c) 2008-2022. 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 #ifdef __cplusplus
13 XBT_PUBLIC void MC_process_clock_add(const simgrid::kernel::actor::ActorImpl*, double);
14 XBT_PUBLIC double MC_process_clock_get(const simgrid::kernel::actor::ActorImpl*);
15 #endif
16
17 #endif