Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move the VM-related data out of MSG's private data for hosts
[simgrid.git] / src / msg / msg_private.h
index 3482e3c..4cb4b3e 100644 (file)
@@ -29,10 +29,6 @@ SG_BEGIN_DECL()
 /**************** datatypes **********************************/
 /********************************* Host **************************************/
 typedef struct s_msg_host_priv {
-  int        dp_enabled;
-  xbt_dict_t dp_objs;
-  double     dp_updated_by_deleted_tasks;
-  int        is_migrating;
 
   std::vector<int> *file_descriptor_table;
 } s_msg_host_priv_t;
@@ -148,7 +144,7 @@ XBT_PRIVATE void __MSG_file_destroy(msg_file_priv_t host);
 XBT_PRIVATE void MSG_process_cleanup_from_SIMIX(smx_actor_t smx_proc);
 XBT_PRIVATE smx_actor_t MSG_process_create_from_SIMIX(const char *name,
                                    std::function<void()> code, void *data,
-                                   const char *hostname, double kill_time,
+                                   sg_host_t host, double kill_time,
                                    xbt_dict_t properties, int auto_restart,
                                    smx_actor_t parent_process);
 XBT_PRIVATE void MSG_comm_copy_data_from_SIMIX(smx_activity_t comm, void* buff, size_t buff_size);