Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move a private symbol (that I may want to kill soon) out of user's sight
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Wed, 11 Jul 2007 07:20:18 +0000 (07:20 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Wed, 11 Jul 2007 07:20:18 +0000 (07:20 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3722 48e7efb5-ca39-0410-a469-dd3cf9ba447f

include/gras/process.h
src/gras/Virtu/virtu_interface.h

index 32eb803..e67941a 100644 (file)
 
 SG_BEGIN_DECL()
 
 
 SG_BEGIN_DECL()
 
-/* **************************************************************************
- * Initializing the processes
- * **************************************************************************/
-/**
- * gras_process_init:
- * 
- * Perform the various intialisations needed by gras. Each process must run it
- */
-XBT_PUBLIC(void) gras_process_init(void);
-
-/**
- * gras_process_exit:
- * 
- * Frees the memory allocated by gras. Processes should run it
- */
-XBT_PUBLIC(void) gras_process_exit(void);
-
 /****************************************************************************/
 /* Manipulating User Data                                                   */
 /****************************************************************************/
 /****************************************************************************/
 /* Manipulating User Data                                                   */
 /****************************************************************************/
index 2d78570..111840f 100644 (file)
@@ -24,8 +24,15 @@ void gras_moddata_exit(void);
 /* shutdown this process wrt module mecanism (process-wide cleanups) */
 void gras_moddata_leave(void);
 
 /* shutdown this process wrt module mecanism (process-wide cleanups) */
 void gras_moddata_leave(void);
 
-/* This is the old interface (deprecated) */
 
 
+/* Perform the various intialisations needed by gras. Each process must run it */
+XBT_PUBLIC(void) gras_process_init(void);
+
+/* Frees the memory allocated by gras. Processes should run it */
+XBT_PUBLIC(void) gras_process_exit(void);
+
+
+/* This is the old interface (deprecated) */
 
 /* declare a new process specific data 
    (used by gras_<module>_register to make sure that gras_process_init will create it) */
 
 /* declare a new process specific data 
    (used by gras_<module>_register to make sure that gras_process_init will create it) */