From: mquinson Date: Sun, 8 Aug 2004 04:19:47 +0000 (+0000) Subject: Do not include all _interface header here, but only where they are needed (speed... X-Git-Tag: v3.3~4994 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/1d3cd4eb09d94f2a593aefbae60902d1cde0d0cb Do not include all _interface header here, but only where they are needed (speed up the recompilations) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@354 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/gras/gras_private.h b/src/gras/gras_private.h index 7b691a7852..88b155fb6a 100644 --- a/src/gras/gras_private.h +++ b/src/gras/gras_private.h @@ -40,12 +40,15 @@ #include "gras/cond.h" #include "gras/transport.h" -#include "Transport/transport_interface.h" #include "gras/datadesc.h" -#include "DataDesc/datadesc_interface.h" #include "gras/messages.h" -#include "Msg/msg_interface.h" -#include "Virtu/virtu_interface.h" +/* modules initialization functions */ +void gras_msg_init(void); +void gras_msg_exit(void); +gras_error_t gras_trp_init(void); /* FIXME */ +void gras_trp_exit(void); +void gras_datadesc_init(void); +void gras_datadesc_exit(void); #endif /* GRAS_PRIVATE_H */