From 0a4335062238cd526c686b232aaca21e72665d70 Mon Sep 17 00:00:00 2001 From: cherierm Date: Fri, 11 Jan 2008 10:48:19 +0000 Subject: [PATCH] Delete the auto aliasing git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@5197 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/simix/smx_process.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/simix/smx_process.c b/src/simix/smx_process.c index 23935b2722..0e31c2e84c 100644 --- a/src/simix/smx_process.c +++ b/src/simix/smx_process.c @@ -62,8 +62,8 @@ smx_process_t SIMIX_process_create(const char *name, smx_process_t process = xbt_new0(s_smx_process_t, 1); smx_process_t self = NULL; smx_host_t host = SIMIX_host_get_by_name(hostname); - char alias[MAX_ALIAS_NAME + 1] = {0}; - msg_mailbox_t mailbox; + /*char alias[MAX_ALIAS_NAME + 1] = {0}; + msg_mailbox_t mailbox;*/ xbt_assert0(((code != NULL) && (host != NULL)), "Invalid parameters"); /* Simulator Data */ @@ -97,10 +97,10 @@ smx_process_t SIMIX_process_create(const char *name, DEBUG2("Inserting %s(%s) in the to_run list", process->name, host->name); xbt_swag_insert(process, simix_global->process_to_run); - sprintf(alias,"%s:%s",hostname,process->name); + /*sprintf(alias,"%s:%s",hostname,process->name); mailbox = MSG_mailbox_new(alias); - MSG_mailbox_set_hostname(mailbox, hostname); + MSG_mailbox_set_hostname(mailbox, hostname);*/ return process; } -- 2.20.1