X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2c4b9b084f2dfb0b9e34bee11e1bc012ea13ad95..782cd664a24283113af99c819c6a63283d98f01a:/examples/smpi/replay/replay.c diff --git a/examples/smpi/replay/replay.c b/examples/smpi/replay/replay.c new file mode 100644 index 0000000000..3aad3c2b52 --- /dev/null +++ b/examples/smpi/replay/replay.c @@ -0,0 +1,18 @@ +/* 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; +}