From: alegrand Date: Wed, 26 Sep 2007 19:10:43 +0000 (+0000) Subject: Update the doc with last reorganization of examples/msg/ X-Git-Tag: v3.3~1041 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/8400efb989370b37b801ed83f85384040a457278 Update the doc with last reorganization of examples/msg/ git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4750 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/doc/FAQ.doc b/doc/FAQ.doc index 6f99989b47..aab3da423a 100644 --- a/doc/FAQ.doc +++ b/doc/FAQ.doc @@ -1016,7 +1016,7 @@ Then, tell SimGrid that you want to use your own "parser" instead of the stock o MSG_create_environment(NULL); \endverbatim -An example of this trick is distributed in the file examples/msg/msg_test_surfxml_bypassed.c +An example of this trick is distributed in the file examples/msg/masterslave/masterslave_bypass.c \section faq_troubleshooting Troubleshooting @@ -1046,7 +1046,7 @@ machine: By default, SimGrid uses something called ucontexts. This is part of the libc, but it's quite undertested. For example, some (old) versions of the glibc on alpha do not implement these functions, but provide the stubs - (which return ENOSYS: not implemented). It fools our detection mecanism + (which return ENOSYS: not implemented). It may fool our detection mecanism and leads to segfaults. There is not much we can do to fix the bug. A workaround is to compile with --with-context=pthread to avoid ucontext completely. You'll be a bit more limitated in the number diff --git a/doc/module-msg.doc b/doc/module-msg.doc index 65fe3868c6..194931e9c3 100644 --- a/doc/module-msg.doc +++ b/doc/module-msg.doc @@ -58,7 +58,7 @@
- \dontinclude msg/msg_test.c + \dontinclude msg/masterslave/masterslave.c \section MSG_ext_ms_code Code of the application @@ -133,7 +133,7 @@ \subsection MSG_ext_ms_application Example of application file - \include msg/small_deployment.xml + \include msg/masterslave/deployment_masterslave.xml \subsection MSG_ext_ms_platform Example of platform file diff --git a/src/msg/deployment.c b/src/msg/deployment.c index 296f0f180e..cb083ba115 100644 --- a/src/msg/deployment.c +++ b/src/msg/deployment.c @@ -23,7 +23,7 @@ * * Here is a small example of such a platform * - * \include small_deployment.xml + * \include msg/masterslave/deployment_masterslave.xml * * Have a look in the directory examples/msg/ to have a bigger example. */