Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Allow to use another base for parameter "modes" in parmap_bench.
[simgrid.git] / testsuite / xbt / parmap_bench.c
index 112fbae..f2e0c5e 100644 (file)
@@ -180,7 +180,7 @@ int main(int argc, char *argv[])
     return EXIT_FAILURE;
   }
   if (argc == 3)
-    modes = atoi(argv[2]);
+    modes = strtol(argv[2], NULL, 0);
 
   printf("Parmap benchmark with %d workers (modes = %#x)...\n\n",
          nthreads, modes);