From a358115a6d6ef855fc2d664fc8d7ae6826ae92e3 Mon Sep 17 00:00:00 2001 From: Frederic Suter Date: Mon, 22 Feb 2016 20:15:17 +0100 Subject: [PATCH 1/1] never ending cleanup of the simdag world + don't know what this test did --- teshsuite/simdag/platforms/basic_tracing.c | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 teshsuite/simdag/platforms/basic_tracing.c diff --git a/teshsuite/simdag/platforms/basic_tracing.c b/teshsuite/simdag/platforms/basic_tracing.c deleted file mode 100644 index 590d0f6d96..0000000000 --- a/teshsuite/simdag/platforms/basic_tracing.c +++ /dev/null @@ -1,33 +0,0 @@ -/* Copyright (c) 2008-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 -#include -#include "simgrid/msg.h" - -XBT_LOG_NEW_DEFAULT_CATEGORY(basic_tracing,"Messages specific for this example"); - -static int host(int argc, char *argv[]) -{ - XBT_INFO("Sleep for 1s"); - MSG_process_sleep(1); - return 0; -} - -int main(int argc, char **argv) -{ - MSG_init(&argc, argv); - MSG_create_environment(argv[1]); - MSG_function_register("host", host); - xbt_dynar_t all_hosts = MSG_hosts_as_dynar(); - MSG_process_create( "host", host, NULL, xbt_dynar_pop_as(all_hosts,msg_host_t)); - xbt_dynar_free(&all_hosts); - - int res = MSG_main(); - XBT_INFO("Simulation time %g", MSG_get_clock()); - - return res != MSG_OK; -} -- 2.20.1