X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5b4afebffb0ca5c8c09c203c30c72242c8e9ad80..1ed359ee7868e2bfd8bc04b0f5e06f0039e0189e:/examples/s4u/trace-platform/s4u-trace-platform.cpp diff --git a/examples/s4u/trace-platform/s4u-trace-platform.cpp b/examples/s4u/trace-platform/s4u-trace-platform.cpp index b448b0e1cc..c01dd8b091 100644 --- a/examples/s4u/trace-platform/s4u-trace-platform.cpp +++ b/examples/s4u/trace-platform/s4u-trace-platform.cpp @@ -1,14 +1,19 @@ -/* Copyright (c) 2010, 2012-2016. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-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. */ +/* This source code simply loads the platform. This is only useful to play + * with the tracing module. See the tesh file to see how to generate the + * traces. + */ + #include "simgrid/s4u.hpp" int main(int argc, char* argv[]) { simgrid::s4u::Engine e(&argc, argv); - e.loadPlatform(argv[1]); + e.load_platform(argv[1]); e.run(); return 0; }