Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Inline another useless function in MC and a define symbol
[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 SG_BEGIN_DECL
13
14 /********************************* Global *************************************/
15 XBT_ATTRIB_NORETURN XBT_PUBLIC void MC_run();
16
17 SG_END_DECL
18
19 #ifdef __cplusplus
20 XBT_PUBLIC void MC_process_clock_add(const simgrid::kernel::actor::ActorImpl*, double);
21 XBT_PUBLIC double MC_process_clock_get(const simgrid::kernel::actor::ActorImpl*);
22 #endif
23
24 #endif