Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
convert host-on-off-recv
[simgrid.git] / teshsuite / msg / host_on_off_recv / host_on_off_recv.c
diff --git a/teshsuite/msg/host_on_off_recv/host_on_off_recv.c b/teshsuite/msg/host_on_off_recv/host_on_off_recv.c
deleted file mode 100644 (file)
index 0df6ef0..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
-/* Copyright (c) 2010-2015. The SimGrid Team.
- * All rights reserved.                                                     */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-#include "simgrid/msg.h"            /* Yeah! If you want to use msg, you need to include simgrid/msg.h */
-
-XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example");
-
-static const char* mailbox = "comm";
-
-static int master(int argc, char *argv[])
-{
-  msg_host_t jupiter = MSG_host_by_name("Jupiter");
-
-  XBT_INFO("Master starting");
-  MSG_process_sleep(0.5);
-
-  msg_task_t task = MSG_task_create("COMM", 0, 100000000, NULL);
-  msg_comm_t comm = MSG_task_isend(task, mailbox);
-
-  MSG_process_sleep(0.5);
-
-  XBT_INFO("Turning off the slave host");
-  MSG_host_off(jupiter);
-
-  if (comm) {
-    MSG_task_destroy(task);
-    MSG_comm_wait(comm, -1);
-    MSG_comm_destroy(comm);
-  }
-  XBT_INFO("Master has finished");
-
-  return 0;
-}
-
-static int slave(int argc, char *argv[])
-{
-  XBT_INFO("Slave receiving");
-  msg_task_t task = NULL;
-  msg_error_t error = MSG_task_receive(&(task), mailbox);
-  if (error) {
-    XBT_ERROR("Error while receiving message");
-    return 1;
-  }
-
-  XBT_ERROR("Slave should be off already.");
-  return 1;
-}
-
-int main(int argc, char *argv[])
-{
-  msg_error_t res;
-
-  MSG_init(&argc, argv);
-  xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]);
-
-  MSG_create_environment(argv[1]);
-
-  MSG_process_create("master", master, NULL, MSG_get_host_by_name("Tremblay"));
-  MSG_process_create("slave", slave, NULL, MSG_get_host_by_name("Jupiter"));
-
-  res = MSG_main();
-
-  XBT_INFO("Simulation time %g", MSG_get_clock());
-
-  return res != MSG_OK;
-}