X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a65b8336dd2a009d8880f167839ee901ebcb2bfb..001a723e0c10af5facba4f0bb5de625bc3da00e1:/src/simix/smx_process.cpp diff --git a/src/simix/smx_process.cpp b/src/simix/smx_process.cpp index 223cba7d46..0effb83035 100644 --- a/src/simix/smx_process.cpp +++ b/src/simix/smx_process.cpp @@ -91,10 +91,11 @@ void SIMIX_process_cleanup(smx_process_t process) comm, (int)comm->state, comm->src_proc, comm->dst_proc); comm->dst_proc = NULL; - if (comm->detached && /* FIXME: This code should be moved within comm->unref() anyway. comm->refcount == 1 &&*/ comm->src_proc != NULL) { + if (comm->detached && comm->src_proc != NULL) { /* the comm will be freed right now, remove it from the sender */ xbt_fifo_remove(comm->src_proc->comms, comm); } + comm->unref(); } else { xbt_die("Communication synchro %p is in my list but I'm not the sender nor the receiver", synchro); @@ -135,7 +136,7 @@ void SIMIX_process_empty_trash(void) xbt_dynar_free(&process->on_exit); xbt_free(process->name); - xbt_free(process); + delete process; } } @@ -146,7 +147,7 @@ void create_maestro(std::function code) { smx_process_t maestro = NULL; /* Create maestro process and intilialize it */ - maestro = xbt_new0(s_smx_process_t, 1); + maestro = new simgrid::simix::Process(); maestro->pid = simix_process_maxpid++; maestro->ppid = -1; maestro->name = (char*) ""; @@ -155,7 +156,7 @@ void create_maestro(std::function code) XBT_RUNNING_CTX_INITIALIZE(maestro->running_ctx); if (!code) { - maestro->context = SIMIX_context_new(NULL, 0, nullptr, NULL, maestro); + maestro->context = SIMIX_context_new(std::function(), NULL, maestro); } else { if (!simix_global) xbt_die("simix is not initialized, please call MSG_init first"); @@ -200,29 +201,6 @@ void SIMIX_process_stop(smx_process_t arg) { arg->context->stop(); } -/** - * \brief Same as SIMIX_process_create() but with only one argument (used by timers). - * This function frees the argument. - * \return the process created - */ -smx_process_t SIMIX_process_create_from_wrapper(smx_process_arg_t args) { - - smx_process_t process = simix_global->create_process_function( - args->name, - args->code, - args->data, - args->hostname, - args->kill_time, - args->argc, - args->argv, - args->properties, - args->auto_restart, - NULL); - xbt_free(args); - return process; -} - - void* simcall_HANDLER_process_create(smx_simcall_t simcall, const char *name, xbt_main_func_t code, @@ -276,7 +254,7 @@ smx_process_t SIMIX_process_create( xbt_free(argv); } else { - process = xbt_new0(s_smx_process_t, 1); + process = new simgrid::simix::Process(); xbt_assert(((code != NULL) && (host != NULL)), "Invalid parameters"); /* Process data */ @@ -314,7 +292,9 @@ smx_process_t SIMIX_process_create( XBT_VERB("Create context %s", process->name); - process->context = SIMIX_context_new(code, argc, argv, simix_global->cleanup_process_function, process); + process->context = SIMIX_context_new( + simgrid::simix::wrap_main(code, argc, argv), + simix_global->cleanup_process_function, process); process->running_ctx = (xbt_running_ctx_t*) xbt_malloc0(sizeof(xbt_running_ctx_t)); XBT_RUNNING_CTX_INITIALIZE(process->running_ctx); @@ -367,7 +347,7 @@ smx_process_t SIMIX_process_attach( return nullptr; } - smx_process_t process = xbt_new0(s_smx_process_t, 1); + smx_process_t process = new simgrid::simix::Process(); /* Process data */ process->pid = simix_process_maxpid++; process->name = xbt_strdup(name); @@ -515,7 +495,7 @@ void SIMIX_process_kill(smx_process_t process, smx_process_t issuer) { } else if (raw != nullptr) { SIMIX_synchro_stop_waiting(process, &process->simcall); - SIMIX_synchro_destroy(process->waiting_synchro); + delete process->waiting_synchro; } else if (io != nullptr) { SIMIX_io_destroy(process->waiting_synchro); @@ -1011,7 +991,7 @@ smx_process_t SIMIX_process_restart(smx_process_t process, smx_process_t issuer) XBT_DEBUG("Restarting process %s on %s", process->name, sg_host_get_name(process->host)); //retrieve the arguments of the old process //FIXME: Factorize this with SIMIX_host_add_auto_restart_process ? - s_smx_process_arg_t arg; + simgrid::simix::ProcessArg arg; arg.code = process->code; arg.hostname = sg_host_get_name(process->host); arg.kill_time = SIMIX_timer_get_date(process->kill_timer);