X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ba9a4cfeba4eb00e84cd17603fc9654e81445655..79b7f7a89ad565a17012ee12c9774c1bd9fa508c:/tools/graphicator/graphicator.c diff --git a/tools/graphicator/graphicator.c b/tools/graphicator/graphicator.c index bffc21a722..0cb86c879f 100644 --- a/tools/graphicator/graphicator.c +++ b/tools/graphicator/graphicator.c @@ -1,22 +1,16 @@ -/* Copyright (c) 2008-2015. The SimGrid Team. +/* Copyright (c) 2008-2019. 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. */ -#ifndef _XBT_WIN32 -#include -#endif - #include "simgrid/msg.h" #include "xbt/graph.h" -XBT_LOG_NEW_DEFAULT_CATEGORY(graphicator, - "Graphicator Logging System"); +XBT_LOG_NEW_DEFAULT_CATEGORY(graphicator, "Graphicator Logging System"); int main(int argc, char **argv) { - XBT_LOG_CONNECT(graphicator); MSG_init(&argc, argv); xbt_assert(argc == 3, "Usage: %s ", argv[0]); @@ -25,5 +19,6 @@ int main(int argc, char **argv) int status = TRACE_platform_graph_export_graphviz (argv[2]); xbt_assert(status != 0, "%s expects --cfg=tracing:yes --cfg=tracing/platform:yes", argv[0]); + MSG_main(); /* useless, except for correctly cleaning memory */ return 0; }