X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b05a0ed4f5fb7b81f96777af37b8f7fc5a4bf160..72a65816fe8cd9943700afe186b186be9a07ab82:/examples/smpi/replay/replay.c?ds=sidebyside diff --git a/examples/smpi/replay/replay.c b/examples/smpi/replay/replay.c index 3aad3c2b52..87ca15c478 100644 --- a/examples/smpi/replay/replay.c +++ b/examples/smpi/replay/replay.c @@ -1,18 +1,13 @@ -/* Copyright (c) 2009, 2010, 2011, 2012. The SimGrid Team. +/* Copyright (c) 2009-2014. 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 "smpi/smpi.h" -int main(int argc, char *argv[]) -{ - smpi_replay_init(&argc, &argv); - - /* Actually do the simulation using smpi_action_trace_run */ - smpi_action_trace_run(NULL); - smpi_replay_finalize(); - +int main(int argc, char *argv[]) { + smpi_replay_run(&argc, &argv); return 0; }