Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
plug two more leaks
[simgrid.git] / teshsuite / xbt / parallel_log_crashtest / parallel_log_crashtest.c
index c4aab99..ab85f5d 100644 (file)
@@ -1,4 +1,4 @@
-/* synchro_crashtest -- tries to crash the logging mecanism by doing // logs*/
+/* synchro_crashtest -- tries to crash the logging mechanism by doing parallel logs*/
 
 /* Copyright (c) 2007-2014. The SimGrid Team.
  * All rights reserved.                                                     */
@@ -6,12 +6,13 @@
 /* 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 "simgrid/msg.h"
 #include "xbt.h"
 
 XBT_LOG_NEW_DEFAULT_CATEGORY(synchro_crashtest, "Logs of this example");
 
-int test_amount = 99;           /* Up to 999 to not break the logs (and thus the testing mecanism) */
-int crasher_amount = 99;        /* Up to 99  to not break the logs (and thus the testing mecanism) */
+int test_amount = 99;           /* Up to 999 to not break the logs (and thus the testing mechanism) */
+int crasher_amount = 99;        /* Up to 99  to not break the logs (and thus the testing mechanism) */
 int *id;                        /* to pass a pointer to the threads without race condition */
 
 int more_info = 0;              /* SET IT TO TRUE TO GET MORE INFO */
@@ -36,9 +37,7 @@ static int crasher(int argc, char *argv[])
   int i;
   xbt_os_thread_t *crashers;
 
-  xbt_init(&argc, argv);
-
-  /* initializations of the philosopher mecanisms */
+  /* initializations of the philosopher mechanisms */
   id = xbt_new0(int, crasher_amount);
   crashers = xbt_new(xbt_os_thread_t, crasher_amount);
 
@@ -64,5 +63,6 @@ static int crasher(int argc, char *argv[])
 
 int main(int argc, char *argv[])
 {
+  MSG_init(&argc, argv);
   return crasher(argc, argv);
 }