X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/29202b3071fe6d3b7146dcd47218ab699ece7a62..6d20a3a2c9d09f8501319253e6fe94018f4f0d8c:/src/simix/smx_context.c diff --git a/src/simix/smx_context.c b/src/simix/smx_context.c index c2bf12d475..ee5c9ffcc5 100644 --- a/src/simix/smx_context.c +++ b/src/simix/smx_context.c @@ -19,7 +19,7 @@ char* smx_context_factory_name = NULL; /* factory name specified by --cfg=contex smx_ctx_factory_initializer_t smx_factory_initializer_to_use = NULL; int smx_context_stack_size = 128 * 1024; smx_context_t smx_current_context; -static int smx_parallel_contexts; +static int smx_parallel_contexts = 1; /** * This function is called by SIMIX_global_init() to initialize the context module. @@ -76,7 +76,7 @@ void SIMIX_context_mod_exit(void) * * \param nb_threads the number of threads to use */ -void SIMIX_context_set_parallel_threads(int nb_threads) { +void SIMIX_context_set_nthreads(int nb_threads) { xbt_assert1(nb_threads > 0, "Invalid number of parallel threads: %d", nb_threads); smx_parallel_contexts = nb_threads; @@ -87,7 +87,7 @@ void SIMIX_context_set_parallel_threads(int nb_threads) { * for the user contexts. * \return the number of threads (1 means no parallelism) */ -int SIMIX_context_get_parallel_threads() { +int SIMIX_context_get_nthreads() { return smx_parallel_contexts; }