From: Martin Quinson Date: Wed, 26 Sep 2012 22:55:08 +0000 (+0200) Subject: point to the coroutines documentation from the Ad error message X-Git-Tag: v3_9_90~569^2~19^2~9^2~28 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/2a1ad9ce504c7125b01671e95bcff568868fbd88 point to the coroutines documentation from the Ad error message --- diff --git a/src/smx_context_java.c b/src/smx_context_java.c index 9eed4afda5..02f6f7b187 100644 --- a/src/smx_context_java.c +++ b/src/smx_context_java.c @@ -80,7 +80,8 @@ smx_ctx_java_factory_create_context(xbt_main_func_t code, int argc, TRY { context->thread = xbt_os_thread_create(NULL,smx_ctx_java_thread_run,context,NULL); } CATCH(e) { - RETHROWF("Impossible to create context #%d. You may want to switch to Java continuations to increase your limits (error: %s)", + RETHROWF("Failed to create context #%d. You may want to switch to Java coroutines to increase your limits (error: %s)." + "See the Install section of simgrid-java documentation (in doc/install.html) for more on coroutines.", thread_amount); } }