X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2d51e5b370a88386341d168e624a9c8c091f31de..ee1477d33506867034463d4d790279340382d7cc:/examples/cpp/exec-ptask-multicore/s4u-exec-ptask-multicore.cpp diff --git a/examples/cpp/exec-ptask-multicore/s4u-exec-ptask-multicore.cpp b/examples/cpp/exec-ptask-multicore/s4u-exec-ptask-multicore.cpp index 18256fc25f..ffc11d06ff 100644 --- a/examples/cpp/exec-ptask-multicore/s4u-exec-ptask-multicore.cpp +++ b/examples/cpp/exec-ptask-multicore/s4u-exec-ptask-multicore.cpp @@ -6,7 +6,6 @@ #include XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_ptask_multicore, "Messages specific for this s4u example"); - namespace sg4 = simgrid::s4u; static void runner() @@ -62,7 +61,7 @@ static void runner() // Add a background task and change ptask on the fly auto MyHost1 = e->host_by_name("MyHost1"); - simgrid::s4u::ExecPtr background_task = MyHost1->exec_async(5e9); + sg4::ExecPtr background_task = MyHost1->exec_async(5e9); XBT_INFO("Start a 1-core background task on the 4-core host."); start_time = sg4::Engine::get_clock();