Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MC: inline a function, kill a file
[simgrid.git] / src / mc / mc_smx.hpp
diff --git a/src/mc/mc_smx.hpp b/src/mc/mc_smx.hpp
deleted file mode 100644 (file)
index a9a5a30..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/* Copyright (c) 2015-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. */
-
-#ifndef SIMGRID_MC_SMX_HPP
-#define SIMGRID_MC_SMX_HPP
-
-#include "src/mc/remote/RemoteSimulation.hpp"
-
-/** @file
- *  @brief (Cross-process, MCer/MCed) Access to SMX structures
- *
- *  We copy some C data structure from the MCed process in the MCer process.
- *  This is implemented by:
- *
- *   - `model_checker->process.smx_process_infos`
- *      (copy of `simix_global->process_list`);
- *
- *   - `model_checker->process.smx_old_process_infos`
- *      (copy of `simix_global->actors_to_destroy`);
- *
- *   - `model_checker->hostnames`.
- *
- * The process lists are currently refreshed each time MCed code is executed.
- * We don't try to give a persistent MCer address for a given MCed process.
- * For this reason, a MCer simgrid::mc::Process* is currently not reusable after
- * MCed code.
- */
-
-XBT_PRIVATE unsigned long MC_smx_get_maxpid();
-
-#endif