From: mquinson Date: Wed, 11 Jul 2007 07:20:18 +0000 (+0000) Subject: Move a private symbol (that I may want to kill soon) out of user's sight X-Git-Tag: v3.3~1638 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/9896aefd0e354ac7342df0589f8ec119e0d517fc?ds=sidebyside Move a private symbol (that I may want to kill soon) out of user's sight git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3722 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/gras/process.h b/include/gras/process.h index 32eb80352a..e67941ae02 100644 --- a/include/gras/process.h +++ b/include/gras/process.h @@ -14,23 +14,6 @@ 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 */ /****************************************************************************/ diff --git a/src/gras/Virtu/virtu_interface.h b/src/gras/Virtu/virtu_interface.h index 2d78570389..111840f795 100644 --- a/src/gras/Virtu/virtu_interface.h +++ b/src/gras/Virtu/virtu_interface.h @@ -24,8 +24,15 @@ void gras_moddata_exit(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__register to make sure that gras_process_init will create it) */