Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
reflect the change of cbps API from v0.3
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sun, 8 Aug 2004 04:40:58 +0000 (04:40 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sun, 8 Aug 2004 04:40:58 +0000 (04:40 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@369 48e7efb5-ca39-0410-a469-dd3cf9ba447f

cruft/doc/gras-sections.txt
cruft/doc/tmpl/comm_datadesc.sgml
cruft/doc/tmpl/tbx_log.sgml

index 72e1836..4fe8975 100644 (file)
@@ -273,15 +273,18 @@ gras_datadesc_union_append
 gras_datadesc_union_close
 gras_datadesc_ref_pop_arr
 
-gras_datadesc_cb_set_pre
-gras_datadesc_cb_set_post
-
-gras_dd_cbps_pop
-gras_dd_cbps_push
-gras_dd_cbps_set
-gras_dd_cbps_get
-gras_dd_cbps_block_begin
-gras_dd_cbps_block_end
+gras_datadesc_cb_send
+gras_datadesc_cb_recv
+
+gras_cbps_i_pop
+gras_cbps_i_push
+
+gras_cbps_v_pop
+gras_cbps_v_push
+gras_cbps_v_set
+gras_cbps_v_get
+gras_cbps_block_begin
+gras_cbps_block_end
 
 gras_arch_selfid
 </SECTION>
index bc66682..3f69830 100644 (file)
@@ -180,6 +180,103 @@ Describing data to be exchanged
 @Returns: 
 
 
+<!-- ##### FUNCTION gras_datadesc_cb_send ##### -->
+<para>
+
+</para>
+
+@type: 
+@pre: 
+
+
+<!-- ##### FUNCTION gras_datadesc_cb_recv ##### -->
+<para>
+
+</para>
+
+@type: 
+@post: 
+
+
+<!-- ##### FUNCTION gras_cbps_i_pop ##### -->
+<para>
+
+</para>
+
+@ps: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gras_cbps_i_push ##### -->
+<para>
+
+</para>
+
+@ps: 
+@val: 
+
+
+<!-- ##### FUNCTION gras_cbps_v_pop ##### -->
+<para>
+
+</para>
+
+@ps: 
+@name: 
+@ddt: 
+@res: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gras_cbps_v_push ##### -->
+<para>
+
+</para>
+
+@ps: 
+@name: 
+@data: 
+@ddt: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gras_cbps_v_set ##### -->
+<para>
+
+</para>
+
+@ps: 
+@name: 
+@data: 
+@ddt: 
+
+
+<!-- ##### FUNCTION gras_cbps_v_get ##### -->
+<para>
+
+</para>
+
+@ps: 
+@name: 
+@ddt: 
+
+
+<!-- ##### FUNCTION gras_cbps_block_begin ##### -->
+<para>
+
+</para>
+
+@ps: 
+
+
+<!-- ##### FUNCTION gras_cbps_block_end ##### -->
+<para>
+
+</para>
+
+@ps: 
+
+
 <!-- ##### FUNCTION gras_arch_selfid ##### -->
 <para>
 
index fefcb24..2228bc2 100644 (file)
@@ -167,17 +167,17 @@ An easy-to-use, fast and flexible message logging architecture.
                (the string would typcially be a runtime option) */
             gras_log_control_set("SA.thresh=3");
 
-            /* This request is enabled, because WARNING >= INFO. */
+            /* This request is enabled, because WARNING &gt;= INFO. */
             CWARN2(VSS, "Low fuel level.");
 
-            /* This request is disabled, because DEBUG < INFO. */
+            /* This request is disabled, because DEBUG &lt; INFO. */
             CDEBUG2(VSS, "Starting search for nearest gas station."); 
 
             /* The default category SA inherits its priority from VSS. Thus,
-               the following request is enabled because INFO >= INFO.  */
+               the following request is enabled because INFO &gt;= INFO.  */
             INFO1("Located nearest gas station.");
 
-            /* This request is disabled, because DEBUG < INFO. */
+            /* This request is disabled, because DEBUG &lt; INFO. */
             DEBUG1("Exiting gas station search");
       }</programlisting>
 </refsect2>
@@ -276,7 +276,7 @@ An easy-to-use, fast and flexible message logging architecture.
 
   <para>
     Log4J has a 'rolling file appender' which you can select with a run-time
-    option & specify the max file size. This would be a nice default for
+    option and specify the max file size. This would be a nice default for
     non-kernel applications.
   </para>