From: alegrand Date: Fri, 1 Jul 2005 05:54:12 +0000 (+0000) Subject: fix references broken due to trailing ":" X-Git-Tag: v3.3~3847 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/b98287aa2f5a15cca6b1f56c3ff58567cc311a85 fix references broken due to trailing ":" git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1508 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/doc/index.doc b/doc/index.doc index e63d11ae77..4074f66282 100644 --- a/doc/index.doc +++ b/doc/index.doc @@ -47,10 +47,10 @@ use. For more information about the SimGrid toolkit, please simply keep reading this page. It is organized as follow: - - \ref overview: Presentation of the toolkit, of each of its components + - \ref overview : Presentation of the toolkit, of each of its components and of their interactions. - - \ref people: Who is behind this project. - - \ref publications: Some articles providing more details about the + - \ref people : Who is behind this project. + - \ref publications : Some articles providing more details about the SimGrid toolkit or using and validating it.
diff --git a/doc/module-gras.doc b/doc/module-gras.doc index 635e0ea85f..adeb57f1f1 100644 --- a/doc/module-gras.doc +++ b/doc/module-gras.doc @@ -6,29 +6,29 @@ \section GRAS_funct Offered functionnalities - Communication facilities: 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). - Virtualization: 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). - Project management tools: 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 @@ -53,14 +53,14 @@ - \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 */ /** @} */