X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9dbeb2372ad9a123d0558132ebb6e003e10aa641..be6e8d3215d3e25f48c7d2d0b359cf178f978d41:/src/msg/msg_process.c diff --git a/src/msg/msg_process.c b/src/msg/msg_process.c index 419e710c35..dd02f54009 100644 --- a/src/msg/msg_process.c +++ b/src/msg/msg_process.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2004-2014. The SimGrid Team. +/* Copyright (c) 2004-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -7,7 +7,7 @@ #include "msg_private.h" #include "xbt/sysdep.h" #include "xbt/log.h" -#include "simix/smx_process_private.h" +#include "src/simix/smx_process_private.h" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_process, msg, "Logging specific to MSG (process)"); @@ -53,14 +53,14 @@ void MSG_process_cleanup_from_SIMIX(smx_process_t smx_proc) } /* This function creates a MSG process. It has the prototype enforced by SIMIX_function_register_process_create */ -void MSG_process_create_from_SIMIX(smx_process_t* process, const char *name, +smx_process_t MSG_process_create_from_SIMIX(const char *name, xbt_main_func_t code, void *data, const char *hostname, double kill_time, int argc, char **argv, xbt_dict_t properties, int auto_restart, smx_process_t parent_process) { - msg_host_t host = MSG_get_host_by_name(hostname); + msg_host_t host = MSG_host_by_name(hostname); msg_process_t p = MSG_process_create_with_environment(name, code, data, host, argc, argv, properties); @@ -68,7 +68,7 @@ void MSG_process_create_from_SIMIX(smx_process_t* process, const char *name, MSG_process_set_kill_time(p,kill_time); MSG_process_auto_restart_set(p,auto_restart); } - *((msg_process_t*) process) = p; + return p; } /** \ingroup m_process_management @@ -82,7 +82,7 @@ msg_process_t MSG_process_create(const char *name, xbt_main_func_t code, void *data, msg_host_t host) { - return MSG_process_create_with_environment(name, code, data, host, -1, + return MSG_process_create_with_environment(name, code, data, host, 0, NULL, NULL); } @@ -164,14 +164,12 @@ msg_process_t MSG_process_create_with_environment(const char *name, simdata->data = data; simdata->last_errno = MSG_OK; - int future_simix_process_pid = SIMIX_process_get_maxpid(); - TRACE_msg_process_create(name, future_simix_process_pid, host); - /* Let's create the process: SIMIX may decide to start it right now, * even before returning the flow control to us */ - simcall_process_create(&process, name, code, simdata, sg_host_name(host), -1, + process = simcall_process_create(name, code, simdata, sg_host_get_name(host), -1, argc, argv, properties,0); - xbt_assert(future_simix_process_pid == SIMIX_process_get_PID(process)); + + TRACE_msg_process_create(name, SIMIX_process_get_PID(process), host); if (!process) { /* Undo everything we have just changed */ @@ -225,7 +223,7 @@ msg_error_t MSG_process_migrate(msg_process_t process, msg_host_t host) simdata->m_host = host; msg_host_t now = simdata->m_host; TRACE_msg_process_change_host(process, now, host); - simcall_process_change_host(process, host); + simcall_process_set_host(process, host); return MSG_OK; }