X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b9625f82f86db0674e911887addce45dca31b57f..df94ee218f091fdb8cf343cde0b6f9be2d46a739:/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(); }