X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e709643ef0c5b61c6c878016c418bffa2b1b20cd..72835f76b7caa8db8b8ec156c8d5522225ecb200:/src/xbt/xbt_virtu.cpp diff --git a/src/xbt/xbt_virtu.cpp b/src/xbt/xbt_virtu.cpp index d2ef77c3fe..56b26168a9 100644 --- a/src/xbt/xbt_virtu.cpp +++ b/src/xbt/xbt_virtu.cpp @@ -1,21 +1,22 @@ /* virtualization layer for XBT */ -/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "simgrid/simix.h" +#include +#include + #include "src/kernel/actor/ActorImpl.hpp" -#include "xbt/virtu.h" int xbt_getpid() { - const simgrid::kernel::actor::ActorImpl* self = SIMIX_process_self(); + const auto* self = simgrid::kernel::actor::ActorImpl::self(); return self == nullptr ? 0 : static_cast(self->get_pid()); } const char* xbt_procname(void) { - return SIMIX_process_self_get_name(); + return simgrid::s4u::Actor::is_maestro() ? "maestro" : simgrid::kernel::actor::ActorImpl::self()->get_cname(); }