Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
smpi_replay: allow to register extra events before things start (+plug a memleak)
[simgrid.git] / examples / smpi / replay / replay.c
index 06b9f9b..7812f6c 100644 (file)
@@ -1,19 +1,24 @@
-/* Copyright (c) 2009-2014. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2009-2017. 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 <stdio.h>
+#include "xbt/replay.h"
 #include "smpi/smpi.h"
 
-int main(int argc, char *argv[])
+/* This shows how to extend the trace format by adding a new kind of events.
+   This function is registered through xbt_replay_action_register() below. */
+static void action_blah(const char* const* args)
 {
-  smpi_replay_init(&argc, &argv);
+  /* Add your answer to the blah event here.
+     args is a strings array containing the blank-separated parameters found in the trace for this event instance. */
+}
 
-  /* Actually do the simulation using smpi_action_trace_run */
-  smpi_action_trace_run(NULL);
-  smpi_replay_finalize();
+int main(int argc, char *argv[]) {
+  /* Connect your calllback function to the "blah" event in the trace files */
+  xbt_replay_action_register("blah", action_blah);
 
+  /* The regular run of the replayer */
+  smpi_replay_run(&argc, &argv);
   return 0;
 }