Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix references broken due to trailing ":"
[simgrid.git] / doc / module-gras.doc
index 635e0ea..adeb57f 100644 (file)
@@ -6,29 +6,29 @@
   
     \section GRAS_funct Offered functionnalities
      - <b>Communication facilities</b>: Exchanging messages between peers
-       - \ref GRAS_dd: any data which may transit on the network must be
+       - \ref GRAS_dd : any data which may transit on the network must be
          described beforehand so that GRAS can handle the platform
          heterogeneity and convert them if needed.
-       - \ref GRAS_sock: this is how to open a communication channel to
+       - \ref GRAS_sock : this is how to open a communication channel to
          other processes, and retrive information about them.
-       - \ref GRAS_msg: communications are message oriented. You have to
+       - \ref GRAS_msg : communications are message oriented. You have to
          describe all possible messages and their payload beforehand, and
          can then attach callbacks to the arrival of a given kind of message. 
-       - \ref GRAS_timer: this is how to program repetitive and delayed
+       - \ref GRAS_timer : this is how to program repetitive and delayed
          tasks, not unlike cron(8) and at(1). This cannot be used to timeout
          a function (like setitimer(2) or signal(2) games could do).
      - <b>Virtualization</b>: Running both on top of the simulator and on
        top of real platforms, and portability support.
-       - \ref GRAS_virtu: You naturally don't want to call the
+       - \ref GRAS_virtu : You naturally don't want to call the
           gettimeofday(2) function in simulation mode since it would give
           you the time on the host running the simulation, not the time in
           the simulated world (you are belonging to).\n
          This a system call virtualization layer, which also acts as a
           portability layer.
-       - \ref GRAS_globals: The use of globals is forbidden since the
+       - \ref GRAS_globals : The use of globals is forbidden since the
          "processes" are threads in simulation mode. \n
         This is how to let GRAS handle your globals properly.
-       - \ref GRAS_emul: Support to emulate code excution (ie, reporting
+       - \ref GRAS_emul : Support to emulate code excution (ie, reporting
          execution time into the simulator and having code sections specific
          to simulation or to real mode).
      - <b>Project management tools</b>: Here are some tools which may help
@@ -38,7 +38,7 @@
          depending on whether you run on the simulator on a real platform.
           And then, you'll have to deal with the usual distributed
           application development difficulties.
-       - \ref GRAS_main_generation: Since processes are threads in
+       - \ref GRAS_main_generation : Since processes are threads in
           simulation mode and regular processes in the real world, GRAS does
           generate your main functions for you.
        - \ref GRAS_compile
        - \ref GRAS_ex_timer
               
     @{ */     
-       /** \defgroup GRAS_dd      Data description      */       
-       /** \defgroup GRAS_sock    Sockets               */           
-       /** \defgroup GRAS_msg     Messages              */               
-       /** \defgroup GRAS_timer   Timers                */               
+       /** @defgroup GRAS_dd      Data description      */       
+       /** @defgroup GRAS_sock    Sockets               */           
+       /** @defgroup GRAS_msg     Messages              */               
+       /** @defgroup GRAS_timer   Timers                */               
         
-       /** \defgroup GRAS_globals Globals               */ 
-       /** \defgroup GRAS_emul    Emulation support */ 
-       /** \defgroup GRAS_virtu   Syscalls              */ 
+       /** @defgroup GRAS_globals Globals               */ 
+       /** @defgroup GRAS_emul    Emulation support */ 
+       /** @defgroup GRAS_virtu   Syscalls              */ 
 
 /** @} */