X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0f5e8daaa6e9f74521068aa75837200bcd182ea6..567811b89be3e615ab755f6d5edf437b6b5daf42:/src/simix/smx_context_ruby.c diff --git a/src/simix/smx_context_ruby.c b/src/simix/smx_context_ruby.c index 4f6358de26..4051badd6e 100644 --- a/src/simix/smx_context_ruby.c +++ b/src/simix/smx_context_ruby.c @@ -11,21 +11,19 @@ #include "xbt/log.h" #include "xbt/asserts.h" -#include "smx_context_private.h" #include "bindings/ruby_bindings.h" XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(ruby); static smx_context_t smx_ctx_ruby_create_context(xbt_main_func_t code, int argc, char **argv, - void_f_pvoid_t cleanup_func, - void *cleanup_arg); + void_pfn_smxprocess_t cleanup_func, + void *data); static void smx_ctx_ruby_stop(smx_context_t context); static void smx_ctx_ruby_suspend(smx_context_t context); static void smx_ctx_ruby_resume(smx_context_t new_context); -static void smx_ctx_ruby_wrapper(void); - +static void smx_ctx_ruby_runall(xbt_dynar_t processes); void SIMIX_ctx_ruby_factory_init(smx_context_factory_t * factory) { @@ -36,21 +34,21 @@ void SIMIX_ctx_ruby_factory_init(smx_context_factory_t * factory) /* Do not overload that method (*factory)->free */ (*factory)->stop = smx_ctx_ruby_stop; (*factory)->suspend = smx_ctx_ruby_suspend; - (*factory)->resume = smx_ctx_ruby_resume; (*factory)->name = "smx_ruby_context_factory"; + (*factory)->runall = smx_ctx_ruby_runall; ruby_init(); ruby_init_loadpath(); } static smx_context_t smx_ctx_ruby_create_context(xbt_main_func_t code, int argc, char **argv, - void_f_pvoid_t cleanup_func, void *cleanup_arg) + void_pfn_smxprocess_t cleanup_func, void *data) { smx_ctx_ruby_t context = (smx_ctx_ruby_t) smx_ctx_base_factory_create_context_sized(sizeof(s_smx_ctx_ruby_t), code, argc, argv, - cleanup_func, cleanup_arg); + cleanup_func, data); /* if the user provided a function for the process , then use it Otherwise it's the context for maestro */ @@ -59,6 +57,7 @@ smx_ctx_ruby_create_context(xbt_main_func_t code, int argc, char **argv, DEBUG1("smx_ctx_ruby_create_context(%s)...Done", argv[0]); } + return (smx_context_t) context; } @@ -72,13 +71,13 @@ static void smx_ctx_ruby_stop(smx_context_t context) ctx_ruby = (smx_ctx_ruby_t) context; - if (simix_global->current_process->iwannadie) { + if (smx_current_context->iwannadie) { if (ctx_ruby->process) { //if the Ruby Process still Alive ,let's Schedule it if (rb_process_isAlive(ctx_ruby->process)) { - current = (smx_ctx_ruby_t) simix_global->current_process->context; + current = (smx_ctx_ruby_t) smx_current_context; rb_process_schedule(current->process); process = ctx_ruby->process; // interupt/kill The Ruby Process @@ -109,5 +108,19 @@ static void smx_ctx_ruby_resume(smx_context_t new_context) smx_ctx_ruby_t ctx_ruby = (smx_ctx_ruby_t) new_context; rb_process_schedule(ctx_ruby->process); +} +static void smx_ctx_ruby_runall(xbt_dynar_t processes) +{ + smx_process_t process; + smx_context_t old_context; + unsigned int cursor; + + xbt_dynar_foreach(processes, cursor, process) { + old_context = smx_current_context; + smx_current_context = process->context; + smx_ctx_ruby_resume(smx_current_context); + smx_current_context = old_context; + } + xbt_dynar_reset(processes); }