X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/655040c6a7e0502c81e30219b8619e0c70b575dd..a145d4fe15830ef87dbe3f62e749d67daf2a0cbf:/src/msg/msg_process.c diff --git a/src/msg/msg_process.c b/src/msg/msg_process.c index 931ec4e19c..a50ef41e50 100644 --- a/src/msg/msg_process.c +++ b/src/msg/msg_process.c @@ -42,8 +42,8 @@ void MSG_process_cleanup_from_SIMIX(smx_process_t smx_proc) SIMIX_process_self_set_data(smx_proc, NULL); } else { - msg_proc = SIMIX_req_process_get_data(smx_proc); - SIMIX_req_process_set_data(smx_proc, NULL); + msg_proc = simcall_process_get_data(smx_proc); + simcall_process_set_data(smx_proc, NULL); } #ifdef HAVE_TRACING @@ -178,7 +178,7 @@ m_process_t MSG_process_create_with_environment(const char *name, /* Let's create the process: SIMIX may decide to start it right now, * even before returning the flow control to us */ - SIMIX_req_process_create(&process, name, code, simdata, host->name, + simcall_process_create(&process, name, code, simdata, host->name, argc, argv, properties); if (!process) { @@ -211,12 +211,12 @@ void MSG_process_kill(m_process_t process) #endif /* FIXME: why do we only cancel communication actions? is this useful? */ - simdata_process_t p_simdata = SIMIX_req_process_get_data(process); + simdata_process_t p_simdata = simcall_process_get_data(process); if (p_simdata->waiting_task && p_simdata->waiting_task->simdata->comm) { - SIMIX_req_comm_cancel(p_simdata->waiting_task->simdata->comm); + simcall_comm_cancel(p_simdata->waiting_task->simdata->comm); } - SIMIX_req_process_kill(process); + simcall_process_kill(process); return; } @@ -229,13 +229,13 @@ void MSG_process_kill(m_process_t process) */ MSG_error_t MSG_process_migrate(m_process_t process, m_host_t host) { - simdata_process_t simdata = SIMIX_req_process_get_data(process); + simdata_process_t simdata = simcall_process_get_data(process); simdata->m_host = host; #ifdef HAVE_TRACING m_host_t now = simdata->m_host; TRACE_msg_process_change_host(process, now, host); #endif - SIMIX_req_process_change_host(process, host->simdata->smx_host); + simcall_process_change_host(process, host->simdata->smx_host); return MSG_OK; } @@ -250,7 +250,7 @@ void* MSG_process_get_data(m_process_t process) xbt_assert(process != NULL, "Invalid parameter"); /* get from SIMIX the MSG process data, and then the user data */ - simdata_process_t simdata = SIMIX_req_process_get_data(process); + simdata_process_t simdata = simcall_process_get_data(process); return simdata->data; } @@ -264,7 +264,7 @@ MSG_error_t MSG_process_set_data(m_process_t process, void *data) { xbt_assert(process != NULL, "Invalid parameter"); - simdata_process_t simdata = SIMIX_req_process_get_data(process); + simdata_process_t simdata = simcall_process_get_data(process); simdata->data = data; return MSG_OK; @@ -294,7 +294,7 @@ m_host_t MSG_process_get_host(m_process_t process) simdata = SIMIX_process_self_get_data(SIMIX_process_self()); } else { - simdata = SIMIX_req_process_get_data(process); + simdata = simcall_process_get_data(process); } return simdata->m_host; } @@ -309,9 +309,12 @@ m_host_t MSG_process_get_host(m_process_t process) */ m_process_t MSG_process_from_PID(int PID) { - /* FIXME: reimplement this function using SIMIX when we have a good PID. - * In the meantime, I guess nobody uses it so it should not break anything. */ - THROW_UNIMPLEMENTED; + return SIMIX_process_from_PID(PID); +} + +/** @brief returns a list of all currently existing processes */ +xbt_dynar_t MSG_processes_as_dynar(void) { + return SIMIX_processes_as_dynar(); } /** \ingroup m_process_management @@ -328,7 +331,7 @@ int MSG_process_get_PID(m_process_t process) return 0; } - simdata_process_t simdata = SIMIX_req_process_get_data(process); + simdata_process_t simdata = simcall_process_get_data(process); return simdata != NULL ? simdata->PID : 0; } @@ -344,7 +347,7 @@ int MSG_process_get_PPID(m_process_t process) { xbt_assert(process != NULL, "Invalid parameter"); - simdata_process_t simdata = SIMIX_req_process_get_data(process); + simdata_process_t simdata = simcall_process_get_data(process); return simdata->PPID; } @@ -359,7 +362,7 @@ const char *MSG_process_get_name(m_process_t process) { xbt_assert(process, "Invalid parameter"); - return SIMIX_req_process_get_name(process); + return simcall_process_get_name(process); } /** \ingroup m_process_management @@ -384,7 +387,7 @@ xbt_dict_t MSG_process_get_properties(m_process_t process) { xbt_assert(process != NULL, "Invalid parameter"); - return SIMIX_req_process_get_properties(process); + return simcall_process_get_properties(process); } @@ -434,7 +437,7 @@ MSG_error_t MSG_process_suspend(m_process_t process) TRACE_msg_process_suspend(process); #endif - SIMIX_req_process_suspend(process); + simcall_process_suspend(process); MSG_RETURN(MSG_OK); } @@ -453,7 +456,7 @@ MSG_error_t MSG_process_resume(m_process_t process) TRACE_msg_process_resume(process); #endif - SIMIX_req_process_resume(process); + simcall_process_resume(process); MSG_RETURN(MSG_OK); } @@ -466,7 +469,7 @@ MSG_error_t MSG_process_resume(m_process_t process) int MSG_process_is_suspended(m_process_t process) { xbt_assert(process != NULL, "Invalid parameter"); - return SIMIX_req_process_is_suspended(process); + return simcall_process_is_suspended(process); } smx_context_t MSG_process_get_smx_ctx(m_process_t process) {