X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/05a8b92b9fa2fb4830a95a384ab6cfdba046ad1d..7d06231bf31deb78e97d5f2408e300c0e4f55af1:/src/msg/msg_task.cpp diff --git a/src/msg/msg_task.cpp b/src/msg/msg_task.cpp index d7fbc112f9..c55ae4f6b3 100644 --- a/src/msg/msg_task.cpp +++ b/src/msg/msg_task.cpp @@ -7,10 +7,29 @@ #include "src/simix/smx_private.hpp" #include #include +#include +#include XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_task, msg, "Logging specific to MSG (task)"); -void s_simdata_task_t::reportMultipleUse() const +namespace simgrid { +namespace msg { +Task::~Task() +{ + /* parallel tasks only */ + delete[] host_list; + delete[] flops_parallel_amount; + delete[] bytes_parallel_amount; +} + +void Task::set_used() +{ + if (this->is_used) + this->report_multiple_use(); + this->is_used = true; +} + +void Task::report_multiple_use() const { if (msg_global->debug_multiple_use){ XBT_ERROR("This task is already used in there:"); @@ -23,6 +42,8 @@ void s_simdata_task_t::reportMultipleUse() const "(use --cfg=msg/debug-multiple-use:on to get the backtrace of the other process)"); } } +} // namespace msg +} // namespace simgrid /********************************* Task **************************************/ /** @brief Creates a new task @@ -40,19 +61,20 @@ void s_simdata_task_t::reportMultipleUse() const */ msg_task_t MSG_task_create(const char *name, double flop_amount, double message_size, void *data) { + static std::atomic_ullong counter{0}; + msg_task_t task = new s_msg_task_t; - simdata_task_t simdata = new s_simdata_task_t(); - task->simdata = simdata; + /* Simulator Data */ + task->simdata = new simgrid::msg::Task(name ? name : "", flop_amount, message_size); /* Task structure */ - task->name = xbt_strdup(name); task->data = data; - /* Simulator Data */ - simdata->bytes_amount = message_size; - simdata->flops_amount = flop_amount; + task->counter = counter++; + task->category = nullptr; - TRACE_msg_task_create(task); + if (MC_is_active()) + MC_ignore_heap(&(task->counter), sizeof(task->counter)); return task; } @@ -135,19 +157,19 @@ msg_process_t MSG_task_get_sender(msg_task_t task) /** @brief Returns the source (the sender's host) of the given task */ msg_host_t MSG_task_get_source(msg_task_t task) { - return task->simdata->source; + return task->simdata->sender->get_host(); } /** @brief Returns the name of the given task. */ const char *MSG_task_get_name(msg_task_t task) { - return task->name; + return task->simdata->get_cname(); } /** @brief Sets the name of the given task. */ void MSG_task_set_name(msg_task_t task, const char *name) { - task->name = xbt_strdup(name); + task->simdata->set_name(name); } /** @brief Destroys the given task. @@ -162,13 +184,12 @@ void MSG_task_set_name(msg_task_t task, const char *name) */ msg_error_t MSG_task_destroy(msg_task_t task) { - if (task->simdata->isused) { + if (task->simdata->is_used) { /* the task is being sent or executed: cancel it first */ MSG_task_cancel(task); } - TRACE_msg_task_destroy(task); - xbt_free(task->name); + xbt_free(task->category); /* free main structures */ delete task->simdata; @@ -189,9 +210,9 @@ msg_error_t MSG_task_cancel(msg_task_t task) if (simdata->compute) { simgrid::simix::simcall([simdata] { simdata->compute->cancel(); }); } else if (simdata->comm) { - simgrid::simix::simcall([simdata] { simdata->comm->cancel(); }); + simdata->comm->cancel(); } - simdata->setNotUsed(); + simdata->set_not_used(); return MSG_OK; } @@ -258,7 +279,7 @@ void MSG_task_set_bytes_amount(msg_task_t task, double data_size) double MSG_task_get_remaining_communication(msg_task_t task) { XBT_DEBUG("calling simcall_communication_get_remains(%p)", task->simdata->comm.get()); - return task->simdata->comm->remains(); + return task->simdata->comm->get_remaining(); } /** @brief Returns the size of the data attached to the given task. */ @@ -277,8 +298,6 @@ void MSG_task_set_priority(msg_task_t task, double priority) { task->simdata->priority = 1 / priority; xbt_assert(std::isfinite(task->simdata->priority), "priority is not finite!"); - if (task->simdata->compute) - simgrid::simix::simcall([task] { task->simdata->compute->set_priority(task->simdata->priority); }); } /** @brief Changes the maximum CPU utilization of a computation task (in flops/s). @@ -289,8 +308,5 @@ void MSG_task_set_bound(msg_task_t task, double bound) { if (bound < 1e-12) /* close enough to 0 without any floating precision surprise */ XBT_INFO("bound == 0 means no capping (i.e., unlimited)."); - task->simdata->bound = bound; - if (task->simdata->compute) - simgrid::simix::simcall([task, bound] { task->simdata->compute->set_bound(bound); }); }