X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3082f058f27fdbc39b5daebf6a720ab2272d6585..001a723e0c10af5facba4f0bb5de625bc3da00e1:/src/surf/sg_platf.cpp diff --git a/src/surf/sg_platf.cpp b/src/surf/sg_platf.cpp index 27763ef535..3ac46e59d0 100644 --- a/src/surf/sg_platf.cpp +++ b/src/surf/sg_platf.cpp @@ -575,7 +575,7 @@ void sg_platf_new_process(sg_platf_process_cbarg_t process) smx_process_arg_t arg = NULL; smx_process_t process_created = NULL; - arg = new s_smx_process_arg_t(); + arg = new simgrid::simix::ProcessArg(); arg->code = parse_code; arg->data = NULL; arg->hostname = sg_host_get_name(host); @@ -593,7 +593,7 @@ void sg_platf_new_process(sg_platf_process_cbarg_t process) xbt_dynar_push_as(sg_host_simix(host)->boot_processes,smx_process_arg_t,arg); if (start_time > SIMIX_get_clock()) { - arg = new s_smx_process_arg_t(); + arg = new simgrid::simix::ProcessArg(); arg->name = process->argv[0]; arg->code = parse_code; arg->data = NULL;