Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
actually, there is no need for the MsgActor to remember about its host. Its s4u compo...
[simgrid.git] / src / msg / msg_private.h
index 79a7c92..3a67a81 100644 (file)
@@ -75,11 +75,7 @@ typedef struct simdata_file {
 
 class MsgActorExt {
 public:
-  msg_host_t m_host; /* the host on which the process is running */
-  smx_activity_t waiting_action = nullptr;
-  msg_task_t waiting_task       = nullptr;
-  msg_error_t last_errno        = MSG_OK; /* the last value returned by a MSG_function */
-
+  msg_error_t errno_ = MSG_OK;  /* the last value returned by a MSG_function */
   void* data = nullptr; /* user data */
 };