Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
first try at killing GRAS -- does not compile yet
[simgrid.git] / doc / gtut-files / 09-datatype-dump.c
diff --git a/doc/gtut-files/09-datatype-dump.c b/doc/gtut-files/09-datatype-dump.c
deleted file mode 100644 (file)
index 31e54bf..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <gras.h>
-#include <stdio.h>
-
-/* We must set this to make logging mecanism happy */
-extern const char *_gras_procname;
-
-/* This is a private data of gras/Datadesc we want to explore */
-xbt_set_t gras_datadesc_set_local=NULL;
-
-int main(int argc, char *argv[]) {
-  xbt_set_elm_t elm;
-  xbt_set_cursor_t cursor;
-  gras_init(&argc,argv);
-   
-  xbt_set_foreach(gras_datadesc_set_local, cursor, elm) {
-     printf("%s\n",elm->name);
-  }
-   
-   
-  gras_exit();
-  return 0;
-}