X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/baca7024fc7c8a8231d947be38fd7627348487fd..7ad4d29624370296a9e4683136f8f64147790ead:/src/simix/smx_global.c diff --git a/src/simix/smx_global.c b/src/simix/smx_global.c index f3da01ed1a..cd48273528 100644 --- a/src/simix/smx_global.c +++ b/src/simix/smx_global.c @@ -35,10 +35,16 @@ extern void smx_ctx_raw_new_sr(void); /* FIXME: Yeah, I'll do it in a portable maner one day [Mt] */ #include +int _surf_do_verbose_exit = 1; static void _XBT_CALL inthandler(int ignored) { - XBT_INFO("CTRL-C pressed. Displaying status and bailing out"); - SIMIX_display_process_status(); + if ( _surf_do_verbose_exit ) { + XBT_INFO("CTRL-C pressed. Displaying status and bailing out"); + SIMIX_display_process_status(); + } + else { + XBT_INFO("CTRL-C pressed. bailing out without displaying because verbose-exit disabled"); + } exit(1); } @@ -110,7 +116,7 @@ void SIMIX_global_init(int *argc, char **argv) } XBT_DEBUG("ADD SIMIX LEVELS"); - SIMIX_HOST_LEVEL = xbt_lib_add_level(host_lib,free); + SIMIX_HOST_LEVEL = xbt_lib_add_level(host_lib,SIMIX_host_destroy); } /** @@ -195,7 +201,7 @@ void SIMIX_run(void) #ifdef TIME_BENCH smx_ctx_raw_new_sr(); #endif - do { + while (xbt_dynar_length(simix_global->process_to_run)) { XBT_DEBUG("New Sub-Schedule Round; size(queue)=%lu", xbt_dynar_length(simix_global->process_to_run)); SIMIX_context_runall(simix_global->process_to_run); @@ -203,7 +209,7 @@ void SIMIX_run(void) XBT_DEBUG("Handling request %p", req); SIMIX_request_pre(req, 0); } - } while (xbt_dynar_length(simix_global->process_to_run)); + } time = surf_solve(SIMIX_timer_next()); @@ -234,6 +240,10 @@ void SIMIX_run(void) if (xbt_swag_size(simix_global->process_list) != 0) { +#ifdef HAVE_TRACING + TRACE_end(); +#endif + XBT_WARN("Oops ! Deadlock or code not perfectly clean."); SIMIX_display_process_status(); xbt_abort();