X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6443d4868c5974225d792156daf319775234b087..08ce0edd12b2c42378cc228a91d37613bbc2acbc:/src/simix/smx_context.c diff --git a/src/simix/smx_context.c b/src/simix/smx_context.c index ba9bb884af..7e0b7e56c7 100644 --- a/src/simix/smx_context.c +++ b/src/simix/smx_context.c @@ -29,7 +29,7 @@ static xbt_os_thread_key_t smx_current_context_key = 0; #endif static int smx_parallel_contexts = 1; -static int smx_parallel_threshold = 1; +static int smx_parallel_threshold = 2; /** * This function is called by SIMIX_global_init() to initialize the context module. @@ -43,15 +43,17 @@ void SIMIX_context_mod_init(void) } else { /* use the factory specified by --cfg=contexts/factory:value */ - if (smx_context_factory_name == NULL) { + if (smx_context_factory_name == NULL) { /* use the default factory */ -#ifdef CONTEXT_UCONTEXT - SIMIX_ctx_sysv_factory_init(&simix_global->context_factory); -#else - SIMIX_ctx_thread_factory_init(&simix_global->context_factory); -#endif - } - else if (!strcmp(smx_context_factory_name, "ucontext")) { + #ifdef HAVE_RAWCTX + SIMIX_ctx_raw_factory_init(&simix_global->context_factory); + #elif CONTEXT_UCONTEXT + SIMIX_ctx_sysv_factory_init(&simix_global->context_factory); + #else + SIMIX_ctx_thread_factory_init(&simix_global->context_factory); + #endif + } + else if (!strcmp(smx_context_factory_name, "ucontext")) { /* use ucontext */ #ifdef CONTEXT_UCONTEXT SIMIX_ctx_sysv_factory_init(&simix_global->context_factory); @@ -68,7 +70,19 @@ void SIMIX_context_mod_init(void) SIMIX_ctx_raw_factory_init(&simix_global->context_factory); } else { - xbt_die("Invalid context factory specified"); + XBT_ERROR("Invalid context factory specified. Valid factories on this machine:"); +#ifdef HAVE_RAWCTX + XBT_ERROR(" raw: high performance context factory implemented specifically for SimGrid"); +#else + XBT_ERROR(" (raw contextes are disabled at compilation time on this machine -- check configure logs for details)"); +#endif +#ifdef CONTEXT_UCONTEXT + XBT_ERROR(" ucontext: classical system V contextes (implemented with makecontext, swapcontext and friends)"); +#else + XBT_ERROR(" (ucontext is disabled at compilation time on this machine -- check configure logs for details)"); +#endif + XBT_ERROR(" thread: slow portability layer using system threads (pthreads on UNIX, CreateThread() on windows)"); + xbt_die("Please use a valid factory."); } } }