From: Martin Quinson Date: Wed, 7 Sep 2011 14:13:58 +0000 (+0200) Subject: more informative error message when an invalid context factory is selected X-Git-Tag: v3_6_2~143 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/056593992509f32c834360664489e8e239d22802?hp=7ff79318b09b10352e946822714b333b8e71555c more informative error message when an invalid context factory is selected --- diff --git a/src/simix/smx_context.c b/src/simix/smx_context.c index 9fc1b5d3e7..7e0b7e56c7 100644 --- a/src/simix/smx_context.c +++ b/src/simix/smx_context.c @@ -70,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."); } } }