X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/eb3be59d63b0d199fa3f32b5a22553e44cfb917a..c91b68ade95e42efb7a24f19fb5228bee0b618d0:/src/gras/Virtu/sg_process.c diff --git a/src/gras/Virtu/sg_process.c b/src/gras/Virtu/sg_process.c index 1841604c5c..96773db6cc 100644 --- a/src/gras/Virtu/sg_process.c +++ b/src/gras/Virtu/sg_process.c @@ -29,7 +29,7 @@ void gras_agent_spawn(const char *name, smx_process_t process; simcall_process_create(&process, name, code, NULL, - gras_os_myname(), argc, argv, properties); + gras_os_myname(), -1.0, argc, argv, properties, 0); } /* ************************************************************************** @@ -211,12 +211,8 @@ xbt_dict_t gras_os_host_properties(void) * (these functions are called by the stuff generated by gras_stub_generator) * **************************************************************************/ -XBT_LOG_EXTERNAL_CATEGORY(gras_trp); -XBT_LOG_EXTERNAL_CATEGORY(gras_trp_sg); - void gras_global_init(int *argc, char **argv) { - XBT_LOG_CONNECT(gras_trp_sg, gras_trp); SIMIX_global_init(argc, argv); } @@ -267,7 +263,5 @@ void gras_load_environment_script(const char *script_file) return; } -void gras_clean() -{ - SIMIX_clean(); +void gras_clean(){ /* this function is not needed anymore and could be removed, but I feel so lazy */ }