Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MC: move a function around + cosmetics
[simgrid.git] / src / mc / remote / RemoteClient.cpp
index 93e655a..25bd083 100644 (file)
@@ -100,6 +100,7 @@ static const std::vector<std::string> filtered_libraries = {
     "libssl",
     "libpsl",
     "libssh",
+    "libssh2",
     "libidn2",
     "libnghttp2",
     "libcurl",
@@ -624,15 +625,5 @@ void RemoteClient::dump_stack()
   _UPT_destroy(context);
   unw_destroy_addr_space(as);
 }
-
-bool RemoteClient::actor_is_enabled(aid_t pid)
-{
-  s_mc_message_actor_enabled_t msg{MC_MESSAGE_ACTOR_ENABLED, pid};
-  process()->get_channel().send(msg);
-  char buff[MC_MESSAGE_LENGTH];
-  ssize_t received = process()->get_channel().receive(buff, MC_MESSAGE_LENGTH, true);
-  xbt_assert(received == sizeof(s_mc_message_int_t), "Unexpected size in answer to ACTOR_ENABLED");
-  return ((s_mc_message_int_t*)buff)->value;
-}
 }
 }