Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
FIXME is obsolete.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 24 Apr 2019 20:10:01 +0000 (22:10 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 24 Apr 2019 20:10:55 +0000 (22:10 +0200)
teshsuite/msg/get_sender/get_sender.c
teshsuite/msg/get_sender/get_sender.tesh

index c4bf34c..821d5d8 100644 (file)
@@ -12,7 +12,7 @@ static int sender_fun(int argc, char *argv[])
 {
   XBT_INFO("Sending");
   MSG_task_send(MSG_task_create("Blah", 0.0, 0.0, NULL), MSG_host_get_name(MSG_host_self()));
-  MSG_process_sleep(1.);     /* FIXME: if the sender exits before the receiver calls get_sender(), bad thing happens */
+  MSG_process_sleep(1.0);
   XBT_INFO("Exiting");
   return 0;
 }
@@ -24,6 +24,8 @@ static int receiver_fun(int argc, char *argv[])
   MSG_task_receive_with_timeout(&task, MSG_host_get_name(MSG_host_self()), DBL_MAX);
   xbt_assert(MSG_task_get_sender(task), "No sender received");
   XBT_INFO("Got a message sent by '%s'", MSG_process_get_name(MSG_task_get_sender(task)));
+  MSG_process_sleep(2.0);
+  XBT_INFO("Did I tell you that I got a message sent by '%s'?", MSG_process_get_name(MSG_task_get_sender(task)));
   MSG_task_destroy(task);
   return 0;
 }
index ca9ced0..7ec1a59 100644 (file)
@@ -4,3 +4,4 @@ $ ${bindir}/get_sender  ${platfdir}/small_platform.xml "--log=root.fmt:[%10.6r]%
 > [  0.000000] (2:receive@Tremblay) Receiving
 > [  0.000195] (2:receive@Tremblay) Got a message sent by 'send'
 > [  1.000195] (1:send@Tremblay) Exiting
+> [  2.000195] (2:receive@Tremblay) Did I tell you that I got a message sent by 'send'?