X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8390edb6b4361182e8afc6bc34aa7b8f5eba65fa..6fa621acd922f1a617134173801509dfda1bae88:/doc/FAQ.doc diff --git a/doc/FAQ.doc b/doc/FAQ.doc index 518b227a75..d74e8824bc 100644 --- a/doc/FAQ.doc +++ b/doc/FAQ.doc @@ -113,7 +113,7 @@ For Unix and MacOS: For Windows : \li cmake 2.8.3 (download page) - \li Dev-c++ (download page) + \li Dev-c++ (download page) \li perl strawberry (download page) \li pcre-7.0 (download page) \li Set environment variables. @@ -923,7 +923,7 @@ int sender() calloc(1,sizeof(double))); *((double*) task->data) = MSG_get_clock(); MSG_task_put(task, slaves[i % slaves_count], PORT_22); - INFO0("Send completed"); + XBT_INFO("Send completed"); return 0; } int receiver() @@ -936,7 +936,7 @@ int receiver() time2 = MSG_get_clock(); if(time1<*((double *)task->data)) time1 = *((double *) task->data); - INFO1("Communication time : \"%f\" ", time2-time1); + XBT_INFO("Communication time : \"%f\" ", time2-time1); free(task->data); MSG_task_destroy(task); return 0;