Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reindent everything (possibly breaking all branches, but for the last time)
[simgrid.git] / teshsuite / xbt / parallel_log_crashtest.c
index 0ced8a5..3d55f8c 100644 (file)
 #include "gras.h"
 #include "xbt/synchro.h"
 
-XBT_LOG_NEW_DEFAULT_CATEGORY(synchro_crashtest,"Logs of this example");
+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 *id; /* to pass a pointer to the threads without race condition */
+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 *id;                        /* to pass a pointer to the threads without race condition */
 
-int more_info=0; /* SET IT TO TRUE TO GET MORE INFO */
+int more_info = 0;              /* SET IT TO TRUE TO GET MORE INFO */
 
 /*
  * Some additionnal code to let the father wait the childs
@@ -29,36 +29,39 @@ int running_threads;
 xbt_mutex_t dead_end;
 
 /* Code ran by each thread */
-static void crasher_thread(void *arg) {
-   int id = *(int*)arg;
-   int i;
-
-   for (i=0; i<test_amount; i++) {
-     if (more_info)
-      INFO10("%03d (%02d|%02d|%02d|%02d|%02d|%02d|%02d|%02d|%02d)",test_amount-i,id,id,id,id,id,id,id,id,id);
-     else
-       INFO0("XXX (XX|XX|XX|XX|XX|XX|XX|XX|XX)");
-   }
-
-   xbt_mutex_acquire(mut_end);
-   running_threads--;
-   xbt_cond_signal(cond_end);
-   xbt_mutex_release(mut_end);
+static void crasher_thread(void *arg)
+{
+  int id = *(int *) arg;
+  int i;
+
+  for (i = 0; i < test_amount; i++) {
+    if (more_info)
+      INFO10("%03d (%02d|%02d|%02d|%02d|%02d|%02d|%02d|%02d|%02d)",
+             test_amount - i, id, id, id, id, id, id, id, id, id);
+    else
+      INFO0("XXX (XX|XX|XX|XX|XX|XX|XX|XX|XX)");
+  }
+
+  xbt_mutex_acquire(mut_end);
+  running_threads--;
+  xbt_cond_signal(cond_end);
+  xbt_mutex_release(mut_end);
 }
 
-int crasher (int argc,char *argv[]);
-int crasher (int argc,char *argv[]) {
+int crasher(int argc, char *argv[]);
+int crasher(int argc, char *argv[])
+{
   int i;
   xbt_thread_t *crashers;
 
-  gras_init(&argc,argv);
+  gras_init(&argc, argv);
 
   /* initializations of the philosopher mecanisms */
-  id = xbt_new0(int,crasher_amount);
-  crashers = xbt_new(xbt_thread_t,crasher_amount);
+  id = xbt_new0(int, crasher_amount);
+  crashers = xbt_new(xbt_thread_t, crasher_amount);
 
-  for (i=0; i<crasher_amount; i++)
-     id[i] = i;
+  for (i = 0; i < crasher_amount; i++)
+    id[i] = i;
 
   /* setup the ending mecanism */
   running_threads = crasher_amount;
@@ -66,26 +69,27 @@ int crasher (int argc,char *argv[]) {
   mut_end = xbt_mutex_init();
 
   /* spawn threads */
-  for (i=0; i<crasher_amount; i++) {
-     char *name = bprintf("thread %d",i);
-     crashers[i] = xbt_thread_create(name,&crasher_thread,&id[i]);
-     free(name);
+  for (i = 0; i < crasher_amount; i++) {
+    char *name = bprintf("thread %d", i);
+    crashers[i] = xbt_thread_create(name, &crasher_thread, &id[i]);
+    free(name);
   }
 
   /* wait for them */
   xbt_mutex_acquire(mut_end);
   while (running_threads)
-     xbt_cond_wait(cond_end,mut_end);
+    xbt_cond_wait(cond_end, mut_end);
   xbt_mutex_release(mut_end);
 
   gras_exit();
   return 0;
 }
 
-int main(int argc, char *argv[]){
+int main(int argc, char *argv[])
+{
   int errcode;
 
-  errcode=crasher(argc,argv);
+  errcode = crasher(argc, argv);
 
   return errcode;
 }