From 9896aefd0e354ac7342df0589f8ec119e0d517fc Mon Sep 17 00:00:00 2001 From: mquinson Date: Wed, 11 Jul 2007 07:20:18 +0000 Subject: [PATCH] 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 --- include/gras/process.h | 17 ----------------- src/gras/Virtu/virtu_interface.h | 9 ++++++++- 2 files changed, 8 insertions(+), 18 deletions(-) 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) */ -- 2.20.1