Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill src/include
[simgrid.git] / src / mc / mc.h
diff --git a/src/mc/mc.h b/src/mc/mc.h
new file mode 100644 (file)
index 0000000..017b09e
--- /dev/null
@@ -0,0 +1,17 @@
+/* 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. */
+
+#ifndef MC_MC_H
+#define MC_MC_H
+
+#include <simgrid/forward.h>
+#include <simgrid/modelchecker.h> /* our public interface */
+
+#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