From: suter Date: Wed, 26 Sep 2012 12:59:46 +0000 (+0200) Subject: moved to examples/smpi/replay/replay.c X-Git-Tag: v3_8~146^2~13 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/dc833e628c07ce15915c7ef679a25873e7abeea7 moved to examples/smpi/replay/replay.c --- diff --git a/examples/smpi/replay.c b/examples/smpi/replay.c deleted file mode 100644 index 3aad3c2b52..0000000000 --- a/examples/smpi/replay.c +++ /dev/null @@ -1,18 +0,0 @@ -/* Copyright (c) 2009, 2010, 2011, 2012. 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 "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(); - - return 0; -}