X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6760cb07d6b57be16928d95339d71e57c4e24f36..548029a96b99a66a16b530071b492e7d3dcd9e5e:/src/simix/smx_context_private.h diff --git a/src/simix/smx_context_private.h b/src/simix/smx_context_private.h index 3769c9bb7d..cce495c403 100644 --- a/src/simix/smx_context_private.h +++ b/src/simix/smx_context_private.h @@ -13,15 +13,15 @@ #include "simix/private.h" SG_BEGIN_DECL() +/*Hack: let msg load directly the right factory */ +typedef void (*SIMIX_ctx_factory_initializer_t)(smx_context_factory_t *); +extern SIMIX_ctx_factory_initializer_t factory_initializer_to_use; /* *********************** */ /* Context type definition */ /* *********************** */ /* the following function pointers types describe the interface that all context concepts must implement */ -/* the following function pointers types describe the interface that all context - concepts must implement */ - /* each context type derive from this structure, so they must contain this structure * at their begining -- OOP in C :/ */ typedef struct s_smx_context { @@ -38,12 +38,12 @@ int smx_ctx_base_factory_finalize(smx_context_factory_t * factory); smx_context_t smx_ctx_base_factory_create_context_sized(size_t size, - xbt_main_func_t code, int argc, char** argv, - void_f_pvoid_t cleanup_func, void* cleanup_arg); + xbt_main_func_t code, int argc, + char **argv, + void_f_pvoid_t cleanup_func, + void *cleanup_arg); void smx_ctx_base_free(smx_context_t context); void smx_ctx_base_stop(smx_context_t context); SG_END_DECL() -#endif /* !_XBT_CONTEXT_PRIVATE_H */ - - +#endif /* !_XBT_CONTEXT_PRIVATE_H */