From: Martin Quinson Date: Tue, 17 Jun 2014 07:23:23 +0000 (+0200) Subject: cosmetics on some error messages X-Git-Tag: v3_12~968 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/d6894035f2338b578db77c42e74223bff9a661f5 cosmetics on some error messages --- diff --git a/src/simix/smx_global.c b/src/simix/smx_global.c index eb212911ac..6de8bc3963 100644 --- a/src/simix/smx_global.c +++ b/src/simix/smx_global.c @@ -31,11 +31,11 @@ int _sg_do_verbose_exit = 1; static void _XBT_CALL inthandler(int ignored) { if ( _sg_do_verbose_exit ) { - XBT_INFO("CTRL-C pressed. Displaying status and bailing out"); + XBT_INFO("CTRL-C pressed. The current status will be displayed before exit (disable that behavior with option 'verbose-exit')."); SIMIX_display_process_status(); } else { - XBT_INFO("CTRL-C pressed. bailing out without displaying because verbose-exit is disabled"); + XBT_INFO("CTRL-C pressed, exiting. Hiding the current process status since 'verbose-exit' is set to false."); } exit(1); }