From 1dd85b68aa1b24d1569bb14b4f52e7b50d3e3c71 Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Fri, 10 Aug 2012 10:53:24 +0200 Subject: [PATCH] now that the simcall has been created, use it --- src/msg/msg_mailbox.c | 2 +- src/smpi/smpi_global.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/msg/msg_mailbox.c b/src/msg/msg_mailbox.c index 14b1540c4d..984df9d7a6 100644 --- a/src/msg/msg_mailbox.c +++ b/src/msg/msg_mailbox.c @@ -59,7 +59,7 @@ msg_mailbox_t MSG_mailbox_get_by_alias(const char *alias) void MSG_mailbox_set_async(const char *alias){ msg_mailbox_t mailbox = MSG_mailbox_get_by_alias(alias); - SIMIX_rdv_set_receiver(mailbox, SIMIX_process_self()); + simcall_rdv_set_receiver(mailbox, SIMIX_process_self()); XBT_VERB("%s mailbox set to receive eagerly for process %p\n",alias, SIMIX_process_self()); } diff --git a/src/smpi/smpi_global.c b/src/smpi/smpi_global.c index fcaaf23411..c1c571548b 100644 --- a/src/smpi/smpi_global.c +++ b/src/smpi/smpi_global.c @@ -65,7 +65,7 @@ void smpi_process_init(int *argc, char ***argv) (*argc)--; data->argc = argc; data->argv = argv; - SIMIX_rdv_set_receiver(data->mailbox_small, proc);// set the process attached to the mailbox + simcall_rdv_set_receiver(data->mailbox_small, proc);// set the process attached to the mailbox XBT_DEBUG("<%d> New process in the game: %p", index, proc); } } -- 2.20.1