Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MC: Further renamings
[simgrid.git] / src / mc / mc_smx.hpp
index d9ca09d..524c581 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2015-2017. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2015-2020. 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. */
@@ -6,7 +6,7 @@
 #ifndef SIMGRID_MC_SMX_HPP
 #define SIMGRID_MC_SMX_HPP
 
-#include "src/mc/remote/RemoteClient.hpp"
+#include "src/mc/remote/RemoteSimulation.hpp"
 
 /** @file
  *  @brief (Cross-process, MCer/MCed) Access to SMX structures
@@ -18,7 +18,7 @@
  *      (copy of `simix_global->process_list`);
  *
  *   - `model_checker->process.smx_old_process_infos`
- *      (copy of `simix_global->process_to_destroy`);
+ *      (copy of `simix_global->actors_to_destroy`);
  *
  *   - `model_checker->hostnames`.
  *
@@ -28,8 +28,6 @@
  * MCed code.
  */
 
-SG_BEGIN_DECL()
-
 /** Get the issuer of  a simcall (`req->issuer`)
  *
  *  In split-process mode, it does the black magic necessary to get an address
@@ -39,15 +37,11 @@ SG_BEGIN_DECL()
  *  @param process the MCed process
  *  @param req     the simcall (copied in the local process)
  */
-XBT_PRIVATE smx_actor_t MC_smx_simcall_get_issuer(s_smx_simcall_t const* req);
+XBT_PRIVATE smx_actor_t MC_smx_simcall_get_issuer(s_smx_simcall const* req);
 
 XBT_PRIVATE const char* MC_smx_actor_get_name(smx_actor_t p);
 XBT_PRIVATE const char* MC_smx_actor_get_host_name(smx_actor_t p);
 
-XBT_PRIVATE int MC_smpi_process_count(void);
-
 XBT_PRIVATE unsigned long MC_smx_get_maxpid(void);
 
-SG_END_DECL()
-
 #endif