X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f540320e2e4fd4fe5c9cb1bf8a4b1c0a972082e6..ce603fdbafff94b48f9e97700931d017c6da2c5c:/src/msg/msg_private.h diff --git a/src/msg/msg_private.h b/src/msg/msg_private.h index 817cbdbbad..b07c9b6894 100644 --- a/src/msg/msg_private.h +++ b/src/msg/msg_private.h @@ -21,13 +21,17 @@ #include "xbt/config.h" #include "src/instr/instr_private.h" -#include "src/synchro/SynchroExec.hpp" -#include "src/synchro/SynchroComm.hpp" +#include "src/kernel/activity/SynchroExec.hpp" +#include "src/kernel/activity/SynchroComm.hpp" SG_BEGIN_DECL() /**************** datatypes **********************************/ +/********************************* Host **************************************/ +typedef struct s_msg_host_priv { + std::vector *file_descriptor_table; +} s_msg_host_priv_t; /********************************* Task **************************************/ typedef struct simdata_task { @@ -38,8 +42,6 @@ typedef struct simdata_task { /* parallel tasks only */ xbt_free(this->host_list); - - xbt_dict_free(&this->affinity_mask_db); } void setUsed(); void setNotUsed() @@ -47,8 +49,8 @@ typedef struct simdata_task { this->isused = false; } - simgrid::simix::Exec *compute = nullptr; /* SIMIX modeling of computation */ - simgrid::simix::Comm *comm = nullptr; /* SIMIX modeling of communication */ + simgrid::kernel::activity::Exec *compute = nullptr; /* SIMIX modeling of computation */ + simgrid::kernel::activity::Comm *comm = nullptr; /* SIMIX modeling of communication */ double bytes_amount = 0.0; /* Data size */ double flops_amount = 0.0; /* Computation size */ msg_process_t sender = nullptr; @@ -58,9 +60,6 @@ typedef struct simdata_task { double bound = 0.0; /* Capping for CPU resource */ double rate = 0.0; /* Capping for network resource */ - /* CPU affinity database of this task */ - xbt_dict_t affinity_mask_db = nullptr; /* smx_host_t host => unsigned long mask */ - bool isused = false; /* Indicates whether the task is used in SIMIX currently */ int host_nb = 0; /* ==0 if sequential task; parallel task if not */ /******* Parallel Tasks Only !!!! *******/ @@ -85,7 +84,7 @@ XBT_PRIVATE void __MSG_host_release_file_descriptor_id(msg_host_t host, int id); typedef struct simdata_process { msg_host_t m_host; /* the host on which the process is running */ msg_host_t put_host; /* used for debugging purposes */ - smx_synchro_t waiting_action; + smx_activity_t waiting_action; msg_task_t waiting_task; msg_error_t last_errno; /* the last value returned by a MSG_function */ @@ -103,7 +102,7 @@ typedef struct process_arg { } s_process_arg_t, *process_arg_t; typedef struct msg_comm { - smx_synchro_t s_comm; /* SIMIX communication object encapsulated (the same for both processes) */ + smx_activity_t s_comm; /* SIMIX communication object encapsulated (the same for both processes) */ msg_task_t task_sent; /* task sent (NULL for the receiver) */ msg_task_t *task_received; /* where the task will be received (NULL for the sender) */ msg_error_t status; /* status of the communication once finished */ @@ -116,17 +115,9 @@ typedef struct dirty_page { msg_task_t task; } s_dirty_page, *dirty_page_t; -XBT_PUBLIC_DATA(const char*) MSG_vm_get_property_value(msg_vm_t vm, const char *name); -XBT_PUBLIC_DATA(xbt_dict_t) MSG_vm_get_properties(msg_vm_t vm); -XBT_PUBLIC_DATA(void) MSG_vm_set_property_value(msg_vm_t vm, const char *name, void *value, void_f_pvoid_t free_ctn); -XBT_PUBLIC_DATA(msg_vm_t) MSG_vm_get_by_name(const char *name); -XBT_PUBLIC_DATA(const char*) MSG_vm_get_name(msg_vm_t vm); - /************************** Global variables ********************************/ typedef struct MSG_Global { - xbt_fifo_t host; - int session; - int debug_multiple_use; + int debug_multiple_use; /* whether we want an error message when reusing the same Task for 2 things */ unsigned long int sent_msg; /* Total amount of messages sent during the simulation */ void (*task_copy_callback) (msg_task_t task, msg_process_t src, msg_process_t dst); void_f_pvoid_t process_data_cleanup; @@ -136,24 +127,21 @@ typedef struct MSG_Global { XBT_PUBLIC_DATA(MSG_Global_t) msg_global; /*************************************************************/ -// FIXME: KILLME -# define MSG_RETURN(val) return(val) - XBT_PRIVATE msg_host_t __MSG_host_create(sg_host_t host); XBT_PRIVATE msg_storage_t __MSG_storage_create(smx_storage_t storage); XBT_PRIVATE void __MSG_host_priv_free(msg_host_priv_t priv); XBT_PRIVATE void __MSG_storage_destroy(msg_storage_priv_t host); XBT_PRIVATE void __MSG_file_destroy(msg_file_priv_t host); -XBT_PRIVATE void MSG_process_cleanup_from_SIMIX(smx_process_t smx_proc); -XBT_PRIVATE smx_process_t MSG_process_create_from_SIMIX(const char *name, +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 code, void *data, - const char *hostname, double kill_time, + sg_host_t host, double kill_time, xbt_dict_t properties, int auto_restart, - smx_process_t parent_process); -XBT_PRIVATE void MSG_comm_copy_data_from_SIMIX(smx_synchro_t comm, void* buff, size_t buff_size); + smx_actor_t parent_process); +XBT_PRIVATE void MSG_comm_copy_data_from_SIMIX(smx_activity_t comm, void* buff, size_t buff_size); -XBT_PRIVATE void MSG_post_create_environment(void); +XBT_PRIVATE void MSG_post_create_environment(); XBT_PRIVATE void MSG_host_add_task(msg_host_t host, msg_task_t task); XBT_PRIVATE void MSG_host_del_task(msg_host_t host, msg_task_t task); @@ -166,9 +154,9 @@ XBT_PRIVATE void TRACE_msg_task_execute_start(msg_task_t task); XBT_PRIVATE void TRACE_msg_task_execute_end(msg_task_t task); XBT_PRIVATE void TRACE_msg_task_destroy(msg_task_t task); XBT_PRIVATE void TRACE_msg_task_get_end(double start_time, msg_task_t task); -XBT_PRIVATE void TRACE_msg_task_get_start(void); +XBT_PRIVATE void TRACE_msg_task_get_start(); XBT_PRIVATE int TRACE_msg_task_put_start(msg_task_t task); //returns TRUE if the task_put_end must be called -XBT_PRIVATE void TRACE_msg_task_put_end(void); +XBT_PRIVATE void TRACE_msg_task_put_end(); /* declaration of instrumentation functions from msg_process_instr.c */ XBT_PRIVATE char *instr_process_id (msg_process_t proc, char *str, int len);